diff options
author | 2011-03-12 17:56:27 +0000 | |
---|---|---|
committer | 2011-03-12 17:56:27 +0000 | |
commit | 2cf131574c5dd27d2cd1a6a8a3c330bb65cd9bae (patch) | |
tree | a73aa988da15ad5f8aad7515999c07b37bad18eb | |
parent | 7b2b6ba76643d473720f1056eaa09c48ad1a01e7 (diff) | |
download | paludis-2cf131574c5dd27d2cd1a6a8a3c330bb65cd9bae.tar.gz paludis-2cf131574c5dd27d2cd1a6a8a3c330bb65cd9bae.tar.xz |
Don't add nothing to world
-rw-r--r-- | src/clients/cave/cmd_execute_resolution.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/clients/cave/cmd_execute_resolution.cc b/src/clients/cave/cmd_execute_resolution.cc index 49b5a4bcf..ebc2a68a3 100644 --- a/src/clients/cave/cmd_execute_resolution.cc +++ b/src/clients/cave/cmd_execute_resolution.cc @@ -642,7 +642,8 @@ namespace { if (*a == "world" || *a == "system" || *a == "security" || *a == "everything" || *a == "insecurity" - || *a == "installed-packages" || *a == "installed-slots") + || *a == "installed-packages" || *a == "installed-slots" + || *a == "nothing") cout << fuc(fs_special_set_world(), fv<'a'>(*a)); else { |