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
We do some (admittedly odd) things in a custom pg_ctl under our CI/CD environment (basically, becoming a non-root user) which require having $PATH be set, amongst other things. [pg_ctl is a shell script that makes some calls to pg_config before exec'ing the real pg_ctl, so it needs PATH working.]
The changes to fix 343 broke this approach because now the only environmental variables set are LANG and LC_ALL.
We do some (admittedly odd) things in a custom pg_ctl under our CI/CD environment (basically, becoming a non-root user) which require having $PATH be set, amongst other things. [pg_ctl is a shell script that makes some calls to pg_config before exec'ing the real pg_ctl, so it needs PATH working.]
The changes to fix 343 broke this approach because now the only environmental variables set are
LANG
andLC_ALL
.Making:
or equivalent should fix this.
The text was updated successfully, but these errors were encountered: