1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-26 20:01:15 +02:00

Don't catch exceptions by value

(cherry picked from commit 893be6f5e3)
This commit is contained in:
Eelco Dolstra 2019-09-22 21:29:33 +02:00
parent 7f9a0033c7
commit bd79c1f6f6
5 changed files with 7 additions and 7 deletions

View file

@ -38,7 +38,7 @@ GitInfo exportGit(ref<Store> store, const std::string & uri,
try {
runProgram("git", true, { "-C", uri, "diff-index", "--quiet", "HEAD", "--" });
} catch (ExecError e) {
} catch (ExecError & e) {
if (!WIFEXITED(e.status) || WEXITSTATUS(e.status) != 1) throw;
clean = false;
}