Skip to content

Commit 006a38b

Browse files
fix error message
1 parent 113641c commit 006a38b

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

scripts/_common.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ if ! [ -x "$(command -v jq)" ]; then
99
exit 1
1010
fi
1111
if ! [ -x "$(command -v yq)" ]; then
12-
echo >&2 'Error: jq is not installed.'
12+
echo >&2 'Error: yq is not installed.'
1313
exit 1
1414
fi

tests/run-tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ if ! [ -x "$(command -v jq)" ]; then
99
exit 1
1010
fi
1111
if ! [ -x "$(command -v yq)" ]; then
12-
echo >&2 'Error: jq is not installed.'
12+
echo >&2 'Error: yq is not installed.'
1313
exit 1
1414
fi
1515

16-
#
16+
#
1717
# Helpers
1818
#
1919

0 commit comments

Comments
 (0)