mirror of
https://github.com/NixOS/nix
synced 2025-07-05 08:11:47 +02:00
* --realise' ->
--install'.
This commit is contained in:
parent
5895c160c4
commit
be96c2189c
2 changed files with 5 additions and 8 deletions
10
src/nix.cc
10
src/nix.cc
|
@ -21,7 +21,7 @@ static ArgType argType = atpUnknown;
|
|||
|
||||
Operations:
|
||||
|
||||
--realise / -r: realise values
|
||||
--install / -i: install (or `realise') values
|
||||
--delete / -d: delete values
|
||||
--query / -q: query stored values
|
||||
--add: add values
|
||||
|
@ -86,8 +86,8 @@ static void getArgType(Strings & flags)
|
|||
}
|
||||
|
||||
|
||||
/* Realise values. */
|
||||
static void opRealise(Strings opFlags, Strings opArgs)
|
||||
/* Install values. */
|
||||
static void opInstall(Strings opFlags, Strings opArgs)
|
||||
{
|
||||
getArgType(opFlags);
|
||||
if (!opFlags.empty()) throw UsageError("unknown flag");
|
||||
|
@ -238,8 +238,8 @@ void run(Strings args)
|
|||
|
||||
Operation oldOp = op;
|
||||
|
||||
if (arg == "--realise" || arg == "-r")
|
||||
op = opRealise;
|
||||
if (arg == "--install" || arg == "-i")
|
||||
op = opInstall;
|
||||
else if (arg == "--delete" || arg == "-d")
|
||||
op = opDelete;
|
||||
else if (arg == "--add")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue