mirror of
https://github.com/NixOS/nix.git
synced 2024-10-31 22:30:52 +00:00
nix-instantiate: Allow --dry-run as a synonym for --readonly-mode
--dry-run is more consistent with nix-env and nix-store.
This commit is contained in:
parent
e1cf40fa95
commit
a897b58373
@ -139,6 +139,8 @@ void run(Strings args)
|
||||
strict = true;
|
||||
else if (arg == "--repair")
|
||||
state.repair = true;
|
||||
else if (arg == "--dry-run")
|
||||
settings.readOnlyMode = true;
|
||||
else if (arg[0] == '-')
|
||||
throw UsageError(format("unknown flag `%1%'") % arg);
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user