Skip to content

Commit 81f62e1

Browse files
author
Oleg Sucharevich
authored
Saas 6383 (#9)
1 parent 108cb2a commit 81f62e1

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

service.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version: 9.1.0
1+
version: 9.2.0

start.sh

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ if [ -n "$SPARE_CHECKOUT" ]; then
6868
if [ -d "$CLONE_DIR" ]; then
6969

7070
# 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"
7272
cd $CLONE_DIR
7373

7474
# Make sure the CLONE_DIR folder is a git folder
@@ -88,7 +88,7 @@ if [ -d "$CLONE_DIR" ]; then
8888

8989
if [ -n "$REVISION" ]; then
9090

91-
echo "Updating $REPO to revision $REVISION"
91+
echo "Updating repository to revision $REVISION"
9292
git checkout $REVISION
9393

9494
CURRENT_BRANCH="`git branch 2>/dev/null | grep '^*' | cut -d' ' -f2-`"
@@ -104,7 +104,6 @@ if [ -d "$CLONE_DIR" ]; then
104104
# Clean folder and clone a fresh copy on current directory
105105
cd ..
106106
rm -rf $CLONE_DIR
107-
echo "cloning $REPO"
108107
git_retry git clone $REPO $CLONE_DIR
109108
cd $CLONE_DIR
110109

@@ -115,7 +114,6 @@ if [ -d "$CLONE_DIR" ]; then
115114
else
116115

117116
# Clone a fresh copy
118-
echo "cloning $REPO"
119117
git_retry git clone $REPO $CLONE_DIR
120118
cd $CLONE_DIR
121119

0 commit comments

Comments
 (0)