Skip to content

Commit

Permalink
[test] Fix shell script quoting
Browse files Browse the repository at this point in the history
  • Loading branch information
khaledhosny committed Jan 27, 2023
1 parent c03c854 commit 6c46da7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/shape/record-test.sh
Expand Up @@ -30,11 +30,11 @@ if test "x${fontfile:0:1}" == 'x-'; then
fi
shift
if ! echo "$hb_subset" | grep -q 'subset'; then
echo "Specify hb-subset (or \"fonttools subset\"): got "$hb_subset"." >&2
echo "Specify hb-subset (or \"fonttools subset\"): got '$hb_subset'." >&2
exit 1
fi
if ! echo "$hb_shape" | grep -q 'hb-shape'; then
echo "Specify hb-shape (not hb-view, etc): got "$hb_shape"." >&2
echo "Specify hb-shape (not hb-view, etc): got '$hb_shape'." >&2
exit 1
fi
options=
Expand Down

0 comments on commit 6c46da7

Please sign in to comment.