From f359c2ce5ce741f913e7d6e8d884552e7aead7ef Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Tue, 4 Oct 2022 22:29:03 +1100 Subject: [PATCH] .github/worksflows/ci: Fix bad use of bash (#2963) --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0519e048..89df72f6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -210,4 +210,7 @@ jobs: ALL_FEATURES=$(cargo metadata --format-version=1 --no-deps | jq -r '.packages[] | select(.name == "libp2p") | .features | keys | map(select(. != "full")) | sort | join(" ")') FULL_FEATURE=$(cargo metadata --format-version=1 --no-deps | jq -r '.packages[] | select(.name == "libp2p") | .features["full"] | sort | join(" ")') - test "$ALL_FEATURES = $FULL_FEATURE" + echo "$ALL_FEATURES"; + echo "$FULL_FEATURE"; + + test "$ALL_FEATURES" = "$FULL_FEATURE"