1
0
mirror of https://github.com/tateisu/SubwayTooter synced 2025-01-03 12:39:13 +01:00

fix makeVersionTag.pl

This commit is contained in:
tateisu 2023-02-09 04:53:09 +09:00
parent fb82e69b1d
commit 2d7fceb238

View File

@ -9,7 +9,7 @@ sub cmd($){
die "failed to execute: $!\n";
}elsif ($? & 127) {
die sprintf "child died with signal %d\n", ($? & 127);
}elseif($?){
}elsif($?){
$rv = $? >> 8;
die "child exited with value $rv\n";
}