Skip to content

Commit 77f2df7

Browse files
committed
fix: resolve commit ID in integ test script
1 parent 3de962e commit 77f2df7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

run_integ_test.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ACTION_GIT_COMMIT_ID=`git rev-parse HEAD`
77

88
# Update the integ test action workflow file with the latest action commit ID
99
git checkout integ-tests
10-
sed -i 's|aws-actions/configure-aws-credentials@v1|aws-actions/configure-aws-credentials@$ACTION_GIT_COMMIT_ID|g' test-workflow.yml
10+
sed -i "s|aws-actions/configure-aws-credentials@v1|aws-actions/configure-aws-credentials@$ACTION_GIT_COMMIT_ID|g" test-workflow.yml
1111
mkdir -p .github/workflows
1212
cp test-workflow.yml .github/workflows
1313
git add .github/workflows
@@ -18,7 +18,7 @@ git push origin integ-tests
1818

1919
# Validate that the action workflow succeeds
2020
# Exit codes: success = 0; failure = 1; pending = 2; no status = 3
21-
while hub ci-status; [ $? -ge 2 ] do
21+
while hub ci-status; [ $? -ge 2 ]; do
2222
echo "waiting for test workflow to complete..."
2323
sleep 5
2424
done

0 commit comments

Comments
 (0)