nix-build: Propagate exit status from nix-store -r
This commit is contained in:
parent
ccd4fe5c49
commit
c6e85ee474
|
@ -274,7 +274,7 @@ foreach my $expr (@exprs) {
|
||||||
while (<OUTPATHS>) {chomp; push @outPaths, $_;}
|
while (<OUTPATHS>) {chomp; push @outPaths, $_;}
|
||||||
if (!close OUTPATHS) {
|
if (!close OUTPATHS) {
|
||||||
die "nix-store killed by signal " . ($? & 127) . "\n" if ($? & 127);
|
die "nix-store killed by signal " . ($? & 127) . "\n" if ($? & 127);
|
||||||
exit 1;
|
exit $? >> 8 || 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
next if $dryRun;
|
next if $dryRun;
|
||||||
|
|
Loading…
Reference in a new issue