You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The default installations of postgres for mac (Brew and Binary Download) do not put the postgres bin folder in the path. our install script has this line:
PG_CONFIG=$(command -v pg_config)
if pg_config is not in the path, that command exits with script without an error. I was able to work around by using:
if command -v pg_config >/dev/null; then
PG_CONFIG=$(command -v pg_config)
fi
which allows the script to run correctly.
The text was updated successfully, but these errors were encountered:
The default installations of postgres for mac (Brew and Binary Download) do not put the postgres
bin
folder in the path. our install script has this line:PG_CONFIG=$(command -v pg_config)
if
pg_config
is not in the path, that command exits with script without an error. I was able to work around by using:if command -v pg_config >/dev/null; then
PG_CONFIG=$(command -v pg_config)
fi
which allows the script to run correctly.
The text was updated successfully, but these errors were encountered: