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 current environment-pass is a strict solution, selecting just what you want one at a time. We avoided the more general "pass everything" idea. Just a thought, what about allowing globbing in environment options - maybe we can get the best of both worlds? It would look like this:
environment-pass = "PIP_*"# All environment variables that start with PIP_ are passedenvironment-pass = "*"# All environment variables are passed (see below for exceptions)
For globbing, a few "PATH" variables (either an explicitly listed set, or possibly anything that ends in PATH) would be ignored due to potential bad side effects - they would have to be listed explicitly without globbing to match. (Or this could be based on contents looking like host paths, etc.) We could support the same expansion used for selectors here. The presences of ?*[{ would activate globbing.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
The current environment-pass is a strict solution, selecting just what you want one at a time. We avoided the more general "pass everything" idea. Just a thought, what about allowing globbing in environment options - maybe we can get the best of both worlds? It would look like this:
For globbing, a few "PATH" variables (either an explicitly listed set, or possibly anything that ends in PATH) would be ignored due to potential bad side effects - they would have to be listed explicitly without globbing to match. (Or this could be based on contents looking like host paths, etc.) We could support the same expansion used for selectors here. The presences of
?*[{
would activate globbing.Beta Was this translation helpful? Give feedback.
All reactions