mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-22 14:06:16 +02:00
Fix another operator precedence issue found by Perl 5.20
This commit is contained in:
parent
f43a8ede93
commit
bf78a27ac9
1 changed files with 1 additions and 1 deletions
|
@ -276,7 +276,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 $? >> 8 || 1;
|
exit ($? >> 8 || 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
next if $dryRun;
|
next if $dryRun;
|
||||||
|
|
Loading…
Reference in a new issue