forked from lix-project/lix
Merge pull request #6695 from afishhh/search-fix-exclude
Fix arity of `--exclude` flag in `nix search`
This commit is contained in:
commit
bbe7187db9
|
@ -34,7 +34,9 @@ struct CmdSearch : InstallableCommand, MixJSON
|
||||||
.shortName = 'e',
|
.shortName = 'e',
|
||||||
.description = "Hide packages whose attribute path, name or description contain *regex*.",
|
.description = "Hide packages whose attribute path, name or description contain *regex*.",
|
||||||
.labels = {"regex"},
|
.labels = {"regex"},
|
||||||
.handler = Handler(&excludeRes),
|
.handler = {[this](std::string s) {
|
||||||
|
excludeRes.push_back(s);
|
||||||
|
}},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -43,3 +43,4 @@ e=$'\x1b' # grep doesn't support \e, \033 or even \x1b
|
||||||
|
|
||||||
(( $(nix search -f search.nix foo --exclude 'foo|bar' | grep -Ec 'foo|bar') == 0 ))
|
(( $(nix search -f search.nix foo --exclude 'foo|bar' | grep -Ec 'foo|bar') == 0 ))
|
||||||
(( $(nix search -f search.nix foo -e foo --exclude bar | grep -Ec 'foo|bar') == 0 ))
|
(( $(nix search -f search.nix foo -e foo --exclude bar | grep -Ec 'foo|bar') == 0 ))
|
||||||
|
[[ $(nix search -f search.nix -e bar --json | jq -c 'keys') == '["foo","hello"]' ]]
|
||||||
|
|
Loading…
Reference in a new issue