Skip to content

Commit 033e06a

Browse files
committed
feat(cli): Add '-n' to dry-run
This came from #12638 and my many small frustrations from wanting to use `-n` and not being able to. We do not have any existing `-n` flags for this to be confused with. I would wager that `-n` is such an entrenched short flag in build tools that it would not make sense for us to use it with any other flag. For a survey of where `-n` is used as a short, see https://www.gnu.org/prep/standards/html_node/Option-Table.html#Option-Table
1 parent 8d43632 commit 033e06a

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/cargo/util/command_prelude.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ pub trait CommandExt: Sized {
291291
}
292292

293293
fn arg_dry_run(self, dry_run: &'static str) -> Self {
294-
self._arg(flag("dry-run", dry_run))
294+
self._arg(flag("dry-run", dry_run).short('n'))
295295
}
296296

297297
fn arg_ignore_rust_version(self) -> Self {

tests/testsuite/cargo_add/help/stdout.log

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Options:
4242
--ignore-rust-version
4343
Ignore `rust-version` specification in packages (unstable)
4444

45-
--dry-run
45+
-n, --dry-run
4646
Don't actually write the manifest
4747

4848
-q, --quiet

tests/testsuite/cargo_publish/help/stdout.log

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Upload a package to the registry
33
Usage: cargo[EXE] publish [OPTIONS]
44

55
Options:
6-
--dry-run Perform all checks without uploading
6+
-n, --dry-run Perform all checks without uploading
77
--index <INDEX> Registry index URL to upload the package to
88
--registry <REGISTRY> Registry to publish to
99
--token <TOKEN> Token to use when uploading

tests/testsuite/cargo_remove/help/stdout.log

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Arguments:
66
<DEP_ID>... Dependencies to be removed
77

88
Options:
9-
--dry-run Don't actually write the manifest
9+
-n, --dry-run Don't actually write the manifest
1010
-q, --quiet Do not print cargo log messages
1111
-v, --verbose... Use verbose output (-vv very verbose/build.rs output)
1212
--color <WHEN> Coloring: auto, always, never

tests/testsuite/cargo_update/help/stdout.log

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Update dependencies as recorded in the local lock file
33
Usage: cargo[EXE] update [OPTIONS] [SPEC]...
44

55
Options:
6-
--dry-run Don't actually write the lockfile
6+
-n, --dry-run Don't actually write the lockfile
77
--recursive Force updating all dependencies of [SPEC]... as well
88
--precise <PRECISE> Update [SPEC] to exactly PRECISE
99
-q, --quiet Do not print cargo log messages

0 commit comments

Comments
 (0)