Handle failure with output

This commit is contained in:
Eelco Dolstra
2015-06-17 17:11:42 +02:00
parent b1a75c7f63
commit 11be780948
4 changed files with 11 additions and 9 deletions

View File

@ -17,6 +17,11 @@ struct BuildProduct
struct BuildResult
{
/* Whether this build has failed with output, i.e., the build
finished with exit code 0 but produced a file
$out/nix-support/failed. */
bool failed = false;
std::string releaseName;
unsigned long long closureSize = 0, size = 0;