Skip to content

Commit

Permalink
[BE]:Fix (#48)
Browse files Browse the repository at this point in the history
* Fix

* Up version

* Delete dot

* Improve deleting files
  • Loading branch information
PhilippPlotnikov authored Jan 4, 2023
1 parent 1d82ab0 commit b5518ab
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
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

0 comments on commit b5518ab

Please sign in to comment.