From 93831c94b9d781b5f2138b194ef3b6aefcd13b20 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Sat, 3 Aug 2024 18:37:20 +0530 Subject: [PATCH] fix: use bash instead of posix sh for install script --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 700f36d..3963074 100644 --- a/action.yml +++ b/action.yml @@ -24,7 +24,7 @@ runs: steps: - name: Install Rokit run: | - curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/rojo-rbx/rokit/main/scripts/install.sh | sh + curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/rojo-rbx/rokit/main/scripts/install.sh | bash env: GITHUB_TOKEN: ${{ inputs.token }} shell: bash