forked from lix-project/lix
Fix another operator precedence issue found by Perl 5.20
This commit is contained in:
parent
f43a8ede93
commit
bf78a27ac9
|
@ -276,7 +276,7 @@ foreach my $expr (@exprs) {
|
|||
while (<OUTPATHS>) {chomp; push @outPaths, $_;}
|
||||
if (!close OUTPATHS) {
|
||||
die "nix-store killed by signal " . ($? & 127) . "\n" if ($? & 127);
|
||||
exit $? >> 8 || 1;
|
||||
exit ($? >> 8 || 1);
|
||||
}
|
||||
|
||||
next if $dryRun;
|
||||
|
|
Loading…
Reference in a new issue