From 9ae4963476c8fdec7ab9ec35d161868a193cd832 Mon Sep 17 00:00:00 2001 From: pgijsbertsen <117165507+pgijsbertsen@users.noreply.github.com> Date: Sat, 29 Nov 2025 12:22:26 +0100 Subject: [PATCH] fix: Unquote pipe command --- .forgejo/workflows/tofu-plan-k8s-wheatley.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/tofu-plan-k8s-wheatley.yaml b/.forgejo/workflows/tofu-plan-k8s-wheatley.yaml index 1ec2039..93cefdb 100644 --- a/.forgejo/workflows/tofu-plan-k8s-wheatley.yaml +++ b/.forgejo/workflows/tofu-plan-k8s-wheatley.yaml @@ -34,7 +34,7 @@ jobs: curl -L https://github.com/opentofu/opentofu/releases/download/v${{ env.TOFU_VERSION }}/${{ env.TOFU_ARCHIVE }} -o ${{ env.TOFU_ARCHIVE }} echo "Downloaded OpenTofu ✅" echo "Verifying checksum..." - if echo "${{ env.TOFU_CHECKSUM }} ${{ env.TOFU_ARCHIVE }}" | sha256sum --check --status; then + if echo ${{ env.TOFU_CHECKSUM }} ${{ env.TOFU_ARCHIVE }} | sha256sum --check --status; then echo "Checksum OK ✅" else echo "Checksum mismatch! ❌"