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.
This commit is contained in:
parent
58ede47ef1
commit
8eb6c23eaf
|
@ -80,7 +80,7 @@ fi
|
||||||
# Test each feature
|
# Test each feature
|
||||||
for feature in ${FEATURES}
|
for feature in ${FEATURES}
|
||||||
do
|
do
|
||||||
echo "********* Testing "$feature" *************"
|
echo "********* Testing $feature *************"
|
||||||
cargo test --verbose --features="$feature"
|
cargo test --verbose --features="$feature"
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue