From a03f8dcfc8e0d6e11e1749eaa018fc4c3bcc95dd Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Thu, 7 Sep 2023 19:49:52 -0600 Subject: [PATCH] Apply suggestions from code review Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index e223795..05d0772 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -43,9 +43,9 @@ if [[ -n "$INPUT_POSTGRESQL_VERSION" ]]; then fi if [[ "$(uname -s)" == "NT"* ]]; then - echo "/Program Files/PostgreSQL/15/bin" >> $GITHUB_PATH + echo "/Program Files/PostgreSQL/15/bin" >> "$GITHUB_PATH" else - echo "/usr/lib/postgresql/15/bin" >> $GITHUB_PATH + echo "/usr/lib/postgresql/15/bin" >> "$GITHUB_PATH" fi echo "Installed postgresql"