From 0d988a8ea06555c78a25e33aff27f1e0f418d8b8 Mon Sep 17 00:00:00 2001 From: David Brown Date: Thu, 21 Jul 2016 12:56:10 +0100 Subject: [PATCH] postpush.pl fix branch passed to buildall. --- src/tools/make/postpush.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/make/postpush.pl b/src/tools/make/postpush.pl index fc4b0efe..b9b60c14 100755 --- a/src/tools/make/postpush.pl +++ b/src/tools/make/postpush.pl @@ -43,7 +43,7 @@ if ($buildneeded) { } else { close(STDIN); close(STDOUT); close(STDERR); # child process system 'echo Syncing voc>postpush.log'; - system '(cd voc && git pull && git checkout $branch) >>postpush.log'; + system '(cd voc; git pull; git checkout ' . $branch . ') >>postpush.log'; exec 'perl voc/src/tools/make/buildall.pl $branch >/tmp/buildall.log'; exit; }