From 3d50ae6e0cd7a7e77365d69ca3b49eb66972fd91 Mon Sep 17 00:00:00 2001 From: Scion Date: Fri, 11 Jul 2025 19:22:40 -0700 Subject: [PATCH] No match case. --- unity-project/action.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/unity-project/action.yaml b/unity-project/action.yaml index f672e35..1632d7d 100644 --- a/unity-project/action.yaml +++ b/unity-project/action.yaml @@ -50,11 +50,13 @@ runs: DOWNLOAD_KEYSTORE=${{ inputs.downloadKeystore }} if [ -z "$DOWNLOAD_KEYSTORE" ]; then + shopt -s nocasematch if [[ "${{ inputs.platform }}" = "android" ]]; then DOWNLOAD_KEYSTORE=true else DOWNLOAD_KEYSTORE=false fi + shopt -u nocasematch fi echo "downloadKeystore=$DOWNLOAD_KEYSTORE" >> "$GITHUB_OUTPUT" shell: bash