8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9238463 commit e7be3e5Copy full SHA for e7be3e5
Installation/Jenkins/build.sh
@@ -514,6 +514,7 @@ if test -n "${ENTERPRISE_GIT_URL}" ; then
514
GITARGS=devel
515
fi
516
echo "I'm on Branch: ${GITARGS}"
517
+ FINAL_PULL="git pull"
518
519
# clean up if we're commanded to:
520
if test -d enterprise -a ${CLEAN_IT} -eq 1; then
@@ -522,7 +523,7 @@ if test -n "${ENTERPRISE_GIT_URL}" ; then
522
523
if test ! -d enterprise; then
524
git clone ${ENTERPRISE_GIT_URL} enterprise
525
- (cd enterprise; git checkout master; git fetch --tags; git pull --all; git checkout ${GITARGS}; git pull )
526
+ (cd enterprise; git checkout master; git fetch --tags; git pull --all; git checkout ${GITARGS}; ${FINAL_PULL} )
527
528
529
0 commit comments