Fix quoting of parameters passed through to 64 bit shell.

This commit is contained in:
David Brown 2016-07-15 16:58:45 +01:00
parent c7511287bb
commit 347cefc614
2 changed files with 23 additions and 4 deletions

View file

@ -43,7 +43,8 @@ if ($buildneeded) {
writelog "Started buildall, pid = $child."; # parent process
} else {
close(STDIN); close(STDOUT); close(STDERR); # child process
system '(cd voc && git pull) >postpush.log';
system 'echo Syncing voc>postpush.log';
system '(cd voc && git pull) >>postpush.log';
exec 'perl voc/src/tools/make/buildall.pl >/tmp/buildall.log';
exit;
}