Skip to content

Commit

Permalink
fix: fixed lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
exreplay committed Jan 5, 2021
1 parent 1ed6a98 commit 578f6e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@averjs/shared-utils/lib/openBrowser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ function executeNodeScript(scriptPath: string | undefined, url: string) {
'The script specified as BROWSER environment variable failed.'
)
);
console.log(`${chalk.cyan(scriptPath)} exited with code ${code}.`);
console.log(`${chalk.cyan(scriptPath)} exited with code ${code || ''}.`);
console.log();
}
});
Expand Down

0 comments on commit 578f6e5

Please sign in to comment.