From ff9a45bc1ad850125ca2abf86105b24fc638b65e Mon Sep 17 00:00:00 2001 From: David Brown Date: Thu, 21 Jul 2016 12:49:27 +0100 Subject: [PATCH] postpush.pl must pull latest changed branch to get appropriate buildall.pl. --- 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 85cde3b7..fc4b0efe 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) >>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; }