mirror of
https://github.com/NixOS/nix.git
synced 2025-11-11 04:56:01 +01:00
Don't catch exceptions by value
(cherry picked from commit893be6f5e3) (cherry picked from commitbd79c1f6f6)
This commit is contained in:
parent
9f53bc33e7
commit
f3ce4453a6
5 changed files with 7 additions and 7 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue