From 88c07341a6bf99f923cb3d6487b72afc025b7746 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 3 Sep 2013 15:56:33 +0200 Subject: nix-env: Use wildcard match by default That is, you don't need to pass '*' anymore, so nix-env -qa is equivalent to nix-env -qa '*' --- src/nix-env/nix-env.cc | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'src/nix-env/nix-env.cc') diff --git a/src/nix-env/nix-env.cc b/src/nix-env/nix-env.cc index 9f51e919b0..2a66743eeb 100644 --- a/src/nix-env/nix-env.cc +++ b/src/nix-env/nix-env.cc @@ -243,13 +243,13 @@ static DrvInfos filterBySelector(EvalState & state, const DrvInfos & allElems, const Strings & args, bool newestOnly) { DrvNames selectors = drvNamesFromArgs(args); + if (selectors.empty()) + selectors.push_back(DrvName("*")); DrvInfos elems; set done; - for (DrvNames::iterator i = selectors.begin(); - i != selectors.end(); ++i) - { + foreach (DrvNames::iterator, i, selectors) { typedef list > Matches; Matches matches; unsigned int n = 0; @@ -321,8 +321,7 @@ static DrvInfos filterBySelector(EvalState & state, const DrvInfos & allElems, } /* Check that all selectors have been used. */ - for (DrvNames::iterator i = selectors.begin(); - i != selectors.end(); ++i) + foreach (DrvNames::iterator, i, selectors) if (i->hits == 0 && i->fullName != "*") throw Error(format("selector `%1%' matches no derivations") % i->fullName); @@ -913,9 +912,6 @@ static void opQuery(Globals & globals, else remaining.push_back(arg); } - if (remaining.size() == 0) - printMsg(lvlInfo, "warning: you probably meant to specify the argument '*' to show all packages"); - /* Obtain derivation information from the specified source. */ DrvInfos availElems, installedElems; -- cgit 1.4.1