Keep build directory if not all expected outputs were produced

Fixes issue #123 in Nixpkgs.
This commit is contained in:
Eelco Dolstra 2012-09-18 10:11:42 -04:00
parent b674665765
commit 00092b2d35
1 changed files with 3 additions and 3 deletions

View File

@ -1352,8 +1352,6 @@ void DerivationGoal::buildDone()
% drvPath % statusToString(status));
}
deleteTmpDir(true);
/* Delete the chroot (if we were using one). */
autoDelChroot.reset(); /* this runs the destructor */
@ -1370,6 +1368,8 @@ void DerivationGoal::buildDone()
being valid. */
computeClosure();
deleteTmpDir(true);
/* It is now safe to delete the lock files, since all future
lockers will see that the output paths are valid; they will
not create new lock files with the same names as the old
@ -2239,7 +2239,7 @@ void DerivationGoal::deleteTmpDir(bool force)
if (tmpDir != "") {
if (settings.keepFailed && !force) {
printMsg(lvlError,
format("builder for `%1%' failed; keeping build directory `%2%'")
format("note: keeping build directory `%2%'")
% drvPath % tmpDir);
if (buildUser.enabled() && !amPrivileged())
getOwnership(tmpDir);