File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 1
- version : 9.1 .0
1
+ version : 9.2 .0
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ if [ -n "$SPARE_CHECKOUT" ]; then
68
68
if [ -d " $CLONE_DIR " ]; then
69
69
70
70
# Cloned dir already exists from previous builds so just fetch all the changes
71
- echo " Preparing to update $REPO "
71
+ echo " Preparing to update repository $REPO_RAW "
72
72
cd $CLONE_DIR
73
73
74
74
# Make sure the CLONE_DIR folder is a git folder
@@ -88,7 +88,7 @@ if [ -d "$CLONE_DIR" ]; then
88
88
89
89
if [ -n " $REVISION " ]; then
90
90
91
- echo " Updating $REPO to revision $REVISION "
91
+ echo " Updating repository to revision $REVISION "
92
92
git checkout $REVISION
93
93
94
94
CURRENT_BRANCH=" ` git branch 2> /dev/null | grep ' ^*' | cut -d' ' -f2-` "
@@ -104,7 +104,6 @@ if [ -d "$CLONE_DIR" ]; then
104
104
# Clean folder and clone a fresh copy on current directory
105
105
cd ..
106
106
rm -rf $CLONE_DIR
107
- echo " cloning $REPO "
108
107
git_retry git clone $REPO $CLONE_DIR
109
108
cd $CLONE_DIR
110
109
@@ -115,7 +114,6 @@ if [ -d "$CLONE_DIR" ]; then
115
114
else
116
115
117
116
# Clone a fresh copy
118
- echo " cloning $REPO "
119
117
git_retry git clone $REPO $CLONE_DIR
120
118
cd $CLONE_DIR
121
119
You can’t perform that action at this time.
0 commit comments