Skip to content

Commit 0b67941

Browse files
Yaniv KalskyYaniv Kalsky
authored andcommitted
fix example in readme
1 parent 2a52078 commit 0b67941

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ jobs:
6767
- name: Testing
6868
id: test-app
6969
run: |
70-
echo "Running tests against sandbox with id: ${{ steps.start-sandbox.outputs.sandbox_id }}
71-
shortcuts=${{ steps.start-sandbox.sandbox_shortcuts }}
72-
readarray -t shortcuts <<< "$(jq '. | .flask-app[]' <<< '${{ steps.start-sandbox.sandbox_shortcuts }}')"
70+
echo "Running tests against sandbox with id: ${{ steps.start-sandbox.outputs.sandbox_id }}"
71+
shortcuts=${{ steps.start-sandbox.outputs.sandbox_shortcuts }}
72+
readarray -t shortcuts <<< "$(jq '. | .flask-app[]' <<< '${{ steps.start-sandbox.outputs.sandbox_shortcuts }}')"
7373
for shortcut in ${shortcuts[@]}; do
7474
"Do something with this ${shortcut}."
7575
done

0 commit comments

Comments
 (0)