From e29cd7c19876cc2b9fd6b7f166d5e547ba71bc3f Mon Sep 17 00:00:00 2001 From: Steve Manuel Date: Thu, 11 Jan 2024 21:51:13 -0700 Subject: [PATCH] ci: rearrange shell commands --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3ccb557..b6cda2f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -56,14 +56,14 @@ jobs: run: | set +o pipefail - WASM=plugin-samples/plugin-sample-wasm/status.wasm - - TEST=$(protolock status --plugins=plugin-sample,plugin-sample-error,$WASM) + TEST=$(protolock status --plugins=plugin-sample,plugin-sample-error,plugin-samples/plugin-sample-wasm/status.wasm) echo $TEST | grep "some error" echo $TEST | grep "Extism plugin ran" protolock status --plugins=plugin-sample-error,plugin-sample | grep "some error" - protolock status --plugins=plugin-sample,plugin-sample-error,$WASM | grep "Extism plugin ran" + protolock status \ + --plugins=plugin-sample,plugin-sample-error,plugin-samples/plugin-sample-wasm/status.wasm \ + | grep "Extism plugin ran" - name: check output using multiple plugins with errors run: | set +o pipefail