Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion service.yaml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version: 10.1.15
version: 10.1.16
9 changes: 7 additions & 2 deletions start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ retry_script () {
cd ../
rm -rf $CLONE_DIR
export IS_RETRY=true
./$0 $@
$0 $@
}

git_retry () {
Expand Down Expand Up @@ -56,7 +56,12 @@ upsert_remote_alias () {
}

delete_process_lock_files () {
find ./.git -type f -iname '*.lock' -delete
ARE_PROCEE_LOCK_FILES=$(find ./.git -type f -iname '*.lock')
if [ -n "$ARE_PROCEE_LOCK_FILES" ]; then
echo Deleting process lock files:
echo $ARE_PROCEE_LOCK_FILES
find ./.git -type f -iname '*.lock' -delete
fi
}

trap exit_trap EXIT
Expand Down