We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 722de3d commit 45a45d8Copy full SHA for 45a45d8
apps/rush-lib/src/scripts/install-run-rush.ts
@@ -59,7 +59,11 @@ function run(): void {
59
60
if (process.argv.length < 3) {
61
console.log(`Usage: ${scriptName} <command> [args...]`);
62
- console.log(`Example: ${scriptName} build --to myproject`);
+ if (scriptName === 'install-run-rush.js') {
63
+ console.log(`Example: ${scriptName} build --to myproject`);
64
+ } else {
65
+ console.log(`Example: ${scriptName} custom-command`);
66
+ }
67
process.exit(1);
68
}
69
0 commit comments