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 a4f93bd commit 38d9910Copy full SHA for 38d9910
infra/build/run.sh
@@ -19,9 +19,7 @@ declare -r _GIT_REPO='[email protected]:ScottG489/unified-diff-parser.git'
19
declare -r _RUN_TASK=$(jq -r .RUN_TASK <<< "$1")
20
declare -r _GIT_BRANCH=$(jq -r .GIT_BRANCH <<< "$1")
21
22
-if [ ! -d "$_PROJECT_NAME" ]; then
23
- git clone --branch $_GIT_BRANCH $_GIT_REPO
24
-fi
+[ -d "$_PROJECT_NAME" ] || git clone --branch $_GIT_BRANCH $_GIT_REPO
25
cd $_PROJECT_NAME
26
27
build_test
0 commit comments