Skip to content

Commit

Permalink
fix(schematics): Correct docstring for affected
Browse files Browse the repository at this point in the history
Followup to 113b51b. Update the docstring change to
match the final option that was decided upon in the
PR. The option is --uncommitted or --untracked not
the original proposal of staged or unstaged.
  • Loading branch information
markphip authored and vsavkin committed Mar 28, 2018
1 parent edac12c commit 6394f9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/schematics/src/command-line/affected.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function printError(command: string, e: any) {
`Or pass the list of files, as follows: npm run affected:${command} -- --files="libs/mylib/index.ts,libs/mylib2/index.ts".`
);
console.error(
`Or to get the list of files from staged or unstaged changes: npm run affected:${command} -- staged | unstaged".`
`Or to get the list of files from local changes: npm run affected:${command} -- --uncommitted | --untracked".`
);
console.error(e.message);
}
Expand Down

0 comments on commit 6394f9e

Please sign in to comment.