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 1d82ab0 commit b5518abCopy full SHA for b5518ab
service.yaml
@@ -1 +1 @@
1
-version: 10.1.15
+version: 10.1.16
start.sh
@@ -17,7 +17,7 @@ retry_script () {
17
cd ../
18
rm -rf $CLONE_DIR
19
export IS_RETRY=true
20
- ./$0 $@
+ $0 $@
21
}
22
23
git_retry () {
@@ -56,7 +56,12 @@ upsert_remote_alias () {
56
57
58
delete_process_lock_files () {
59
- find ./.git -type f -iname '*.lock' -delete
+ ARE_PROCEE_LOCK_FILES=$(find ./.git -type f -iname '*.lock')
60
+ if [ -n "$ARE_PROCEE_LOCK_FILES" ]; then
61
+ echo Deleting process lock files:
62
+ echo $ARE_PROCEE_LOCK_FILES
63
+ find ./.git -type f -iname '*.lock' -delete
64
+ fi
65
66
67
trap exit_trap EXIT
0 commit comments