Ohoh, fix loop in re-exec
authorHeiko Schlittermann (HS12-RIPE) <hs@schlittermann.de>
Sat, 5 Nov 2016 23:15:34 +0000 (00:15 +0100)
committerHeiko Schlittermann (HS12-RIPE) <hs@schlittermann.de>
Sat, 5 Nov 2016 23:15:34 +0000 (00:15 +0100)
run_branches

index d45024d9a081637b8f6113a1adf162f8da8d6f46..e1d0b9e0d5026797fb3c4b159d99982e239f308d 100755 (executable)
@@ -99,7 +99,7 @@ if (not exists $EximBuild::Conf{auto_update} or $EximBuild::Conf{auto_update})
        }
        else {
            # if we're the merge base, the ff-only should work
-           system 'git pull --ff-only' == 0 or die $? >> 8;
+           system('git pull --ff-only') == 0 or die $? >> 8;
            say "$0: re-execute after update";
            chdir $CALLED{cwd} or die "$0: Can't chdir to $CALLED{cwd}: $!\n";
            exec $CALLED{argv0}, @{$CALLED{argv}};