mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 00:08:07 +02:00
* Regression fix: query flags (e.g., "-qsf") were broken.
This commit is contained in:
parent
a3ca74a1c3
commit
0c804c6775
1 changed files with 2 additions and 0 deletions
|
@ -402,6 +402,8 @@ void run(Strings args)
|
|||
op = opUninstall;
|
||||
else if (arg == "--query" || arg == "-q")
|
||||
op = opQuery;
|
||||
else if (arg[0] == '-')
|
||||
opFlags.push_back(arg);
|
||||
else
|
||||
opArgs.push_back(arg);
|
||||
|
||||
|
|
Loading…
Reference in a new issue