Skip to content

Commit

Permalink
Fixes #37
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredcwhite committed May 13, 2020
1 parent 5aca30f commit a48d435
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bridgetown-core/lib/site_template/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ concurrently([
], {
restartTries: 3,
killOthers: ['failure', 'success'],
}).then(() => {}, () => {});
}).then(() => { console.log("Done.") }, () => {});
2 changes: 1 addition & 1 deletion bridgetown-website/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ concurrently([
], {
restartTries: 3,
killOthers: ['failure', 'success'],
}).then(() => {}, () => {});
}).then(() => { console.log("Done.") }, () => {});

0 comments on commit a48d435

Please sign in to comment.