From d5b9f2654d30a08f24f8daa67062dc7d70a23e3e Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Wed, 20 Dec 2023 19:37:37 -0600 Subject: [PATCH] Fix base-setup bash syntax --- .github/actions/base-setup/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/base-setup/action.yml b/.github/actions/base-setup/action.yml index 9624990..7e6d034 100644 --- a/.github/actions/base-setup/action.yml +++ b/.github/actions/base-setup/action.yml @@ -114,7 +114,7 @@ runs: set -eux echo "::group::Upgrade packaging dependencies" python -m pip install --upgrade pip - if [ "$RUNNER_OS" != "Windows"]; then + if [ "$RUNNER_OS" != "Windows" ]; then pipx install hatch --python $(which python) else pipx install hatch