diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2021-09-27 14:35:55 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2021-09-27 14:38:10 +0200 |
commit | 8430a8f0866e4463a891ccce62779ea9ac0f3b38 (patch) | |
tree | 208c3c74f571c9c1a00ff2a2d083ce8fafbf32ce /src/libstore/build/local-derivation-goal.cc | |
parent | 4b2b15113196e403bc32ce0d7b4338971d7954a8 (diff) |
Don't copy in rethrow
Diffstat (limited to 'src/libstore/build/local-derivation-goal.cc')
-rw-r--r-- | src/libstore/build/local-derivation-goal.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/build/local-derivation-goal.cc b/src/libstore/build/local-derivation-goal.cc index 23a5df85e..b0bc82ffc 100644 --- a/src/libstore/build/local-derivation-goal.cc +++ b/src/libstore/build/local-derivation-goal.cc @@ -943,7 +943,7 @@ void LocalDerivationGoal::startBuilder() worker.store.printStorePath(drvPath), statusToString(status), concatStringsSep("|", msgs)); - throw e; + throw; } }(); if (string(msg, 0, 1) == "\2") break; @@ -951,7 +951,7 @@ void LocalDerivationGoal::startBuilder() FdSource source(builderOut.readSide.get()); auto ex = readError(source); ex.addTrace({}, "while setting up the build environment"); - throw ex; + throw; } debug("sandbox setup: " + msg); msgs.push_back(std::move(msg)); |