Skip to content

Commit

Permalink
Fix old bug, repr is nothing here.
Browse files Browse the repository at this point in the history
  • Loading branch information
dannon committed Aug 14, 2024
1 parent 74fa14c commit 7e89c86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/build/run.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ function main(rawArgv) {
// argv[0] is the node binary and argv[1] is run.mjs, so argv[2] should be the command.
let command = argv[2];
if (command !== "develop" && command !== "build") {
console.error(repr`Invalid command ${command}. Must give 'develop' or 'build'.`);
console.error(`Invalid command ${command}. Must give 'develop' or 'build'.`);
return 1;
}

Expand Down

0 comments on commit 7e89c86

Please sign in to comment.