From 28bff470c669fa35d0ebc6f010952723e4bec15f Mon Sep 17 00:00:00 2001 From: David Brown Date: Fri, 12 Aug 2016 15:40:27 +0100 Subject: [PATCH] Still trying to get branch switching to work. --- 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 c7229b10..fe9e62ad 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 . '; git pull) >>postpush.log'; + system '(cd voc; git pull; git checkout -f ' . $branch . '; git pull; git checkout -f) >>postpush.log'; exec 'perl voc/src/tools/make/buildall.pl ' . $branch . ' >/tmp/buildall.log'; exit; }