From 8eb6c23eafb30e308386b0d9ecfb5eb4843b2c8a Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Fri, 22 Jul 2022 11:26:37 +1000 Subject: [PATCH] ci: Remove inner quotes from shell variable shellcheck emits: SC2027: The surrounding quotes actually unquote this. Remove or escape them. Remove inner quotes from shell variable so the feature is correctly printed. --- contrib/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/test.sh b/contrib/test.sh index c0bf30c1..3fe57b2b 100755 --- a/contrib/test.sh +++ b/contrib/test.sh @@ -80,7 +80,7 @@ fi # Test each feature for feature in ${FEATURES} do - echo "********* Testing "$feature" *************" + echo "********* Testing $feature *************" cargo test --verbose --features="$feature" done