0
0
Fork 0
mirror of https://github.com/tj-actions/pg-dump.git synced 2024-12-20 01:18:49 +00:00

Apply suggestions from code review

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Tonye Jack 2023-09-07 19:49:52 -06:00 committed by GitHub
parent acc4f6cabe
commit a03f8dcfc8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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"