Skip to content

Commit 9314846

Browse files
committed
double quote ALL THE THINGS!!!
1 parent c5bd97b commit 9314846

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/actions/emit-metrics/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ runs:
4242
steps:
4343
- name: Verify kat exists
4444
shell: bash
45-
run: which kat || ( echo Cannot find kat installation. Did you forget to run setup-kat first? && exit 1 )
45+
run: which kat || ( echo "Cannot find kat installation. Did you forget to run setup-kat first?" && exit 1 )
4646
- name: Emit Metrics
4747
shell: bash
4848
run: |

.github/workflows/test-emit-metrics.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ jobs:
5555
shell: bash
5656
run: |
5757
if [ "${{ steps.expected-failure.outcome }}" = "failure" ]; then
58-
echo Saw expected failure from attempting to emit metrics when kat isn't installed.
58+
echo "Saw expected failure from attempting to emit metrics when kat isn't installed."
5959
exit 0
6060
else
61-
echo Expected failure from previous step!
61+
echo "Expected failure from previous step!"
6262
exit 1
6363
fi

0 commit comments

Comments
 (0)