Fix another operator precedence issue found by Perl 5.20

This commit is contained in:
Eelco Dolstra 2014-12-05 19:25:13 +01:00
parent f43a8ede93
commit bf78a27ac9
1 changed files with 1 additions and 1 deletions

View File

@ -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;