From b2daeffa362bee7c775e8fd1520dce55f61f23eb Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Sun, 27 Oct 2024 16:27:33 -0400 Subject: [PATCH] actions: fi! --- .github/actions/decrypt.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/decrypt.sh b/.github/actions/decrypt.sh index b69a8927..3008fc8e 100755 --- a/.github/actions/decrypt.sh +++ b/.github/actions/decrypt.sh @@ -27,10 +27,11 @@ gpg --batch \ --output "$credsfile" \ "$gpgfile" -if [[ "${RUNNER_OS}" == "macOS" ]]; then +if [[ "$RUNNER_OS" == "macOS" ]]; then tar="gtar" else tar="tar" +fi "$tar" xlvvf "$credsfile" --directory "$credspath" rm -rvf "$gpgfile"