From baf2983d84fead1ed3c8618c472fd24fd1d6a2c7 Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Sat, 11 May 2024 18:24:55 -0600 Subject: [PATCH] Update entrypoint.sh Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 7f7ab52..d836cba 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -53,7 +53,7 @@ if [[ "$(uname -s)" == "NT"* ]] || [[ "$(uname -s)" == "MINGW"* ]] || [[ "$(unam # shellcheck disable=SC2028 echo "C:\\Program Files\\PostgreSQL\\$INPUT_POSTGRESQL_VERSION\\bin" >> "$GITHUB_PATH" elif [[ "$(uname -s)" == "Darwin" ]]; then - echo "$(brew --prefix postgresql@${INPUT_POSTGRESQL_VERSION})/bin" >> "$GITHUB_PATH" + echo "$(brew --prefix postgresql@"${INPUT_POSTGRESQL_VERSION}")/bin" >> "$GITHUB_PATH" else echo "/usr/lib/postgresql/$INPUT_POSTGRESQL_VERSION/bin" >> "$GITHUB_PATH" fi