1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-22 02:09:36 +01:00

Don't catch exceptions by value

(cherry picked from commit 893be6f5e3)
(cherry picked from commit bd79c1f6f6)
This commit is contained in:
Eelco Dolstra 2019-09-22 21:29:33 +02:00
parent 9f53bc33e7
commit f3ce4453a6
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE
5 changed files with 7 additions and 7 deletions

View file

@ -280,7 +280,7 @@ static void _main(int argc, char * * argv)
auto absolute = i;
try {
absolute = canonPath(absPath(i), true);
} catch (Error e) {};
} catch (Error & e) {};
if (store->isStorePath(absolute) && std::regex_match(absolute, std::regex(".*\\.drv(!.*)?")))
drvs.push_back(DrvInfo(*state, store, absolute));
else