Skip to content
This repository has been archived by the owner on Oct 3, 2023. It is now read-only.

Commit

Permalink
Fix exit code
Browse files Browse the repository at this point in the history
  • Loading branch information
webpro committed Sep 4, 2020
1 parent 9087831 commit 499f7df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/dyson.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const [dir, port] = process.argv.slice(2);
const showHelpAndExit = () => {
console.info(`dyson v${pkg.version}`);
console.info('Usage: dyson <dir> [port]');
process.exit(1);
process.exit(0);
};

if (dir) {
Expand Down

0 comments on commit 499f7df

Please sign in to comment.