From 9382162aff50a488285f763daa7a8bcb29d856e7 Mon Sep 17 00:00:00 2001 From: David Brown Date: Fri, 12 Aug 2016 15:29:37 +0100 Subject: [PATCH] Still trying to make build switch branches properly. --- 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 26b120fd..c7229b10 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 -f ' . $branch . ') >>postpush.log'; + system '(cd voc; git pull; git checkout -f ' . $branch . '; git pull) >>postpush.log'; exec 'perl voc/src/tools/make/buildall.pl ' . $branch . ' >/tmp/buildall.log'; exit; }