Skip to content

Commit

Permalink
fix: install Plugins.md when haraka -i (#3406)
Browse files Browse the repository at this point in the history
  • Loading branch information
msimerson authored Sep 22, 2024
1 parent 504570e commit 81578d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions Changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- removed dependency on ldap plugins #3399
- doc(tls.md): add note for no_tls_hosts for outbound
- test(tls): add tests for no_tls_hosts for inbound & outbound
- fix: install docs/Plugins.md when haraka -i installed


### [3.0.4] - 2024-08-21
Expand Down
1 change: 1 addition & 0 deletions bin/haraka
Original file line number Diff line number Diff line change
Expand Up @@ -554,6 +554,7 @@ else if (parsed.install) {
for (const d of ['plugins', 'docs', 'config']) {
utils.mkDir(path.join(pa, d));
}
utils.copyFile(path.join(base, 'docs', 'Plugins.md'), path.join(pa, 'docs', 'Plugins.md'));
utils.createFile(path.join(pa, 'README'), readme, {}, parsed.force);
utils.createFile(path.join(pa, 'package.json'), packageJson, {}, parsed.force);
const bytes = require('crypto').randomBytes(32);
Expand Down

0 comments on commit 81578d3

Please sign in to comment.