From fb8f29b11c333dff592fe86487be01b247f35e0a Mon Sep 17 00:00:00 2001 From: Ezri Zhu Date: Mon, 5 Aug 2024 17:25:43 -0400 Subject: [PATCH] shellcheck --- test/stdstream.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/stdstream.sh b/test/stdstream.sh index 9b2e1d34..87ad2cac 100755 --- a/test/stdstream.sh +++ b/test/stdstream.sh @@ -24,4 +24,4 @@ expected=$(echo 5 | sh "$cmdfile" 2>/dev/null) result=$(echo 5 | "$TRY" "$cmdfile" 2>&1) # using grep because stdout also includes try err/warns -echo $result | grep 15 > /dev/null +echo "$result" | grep 15 > /dev/null