I have a python virtualenv that I created with `pa...
# general
p
I have a python virtualenv that I created with
pants export
under
dist/
I just discovered that all of the scripts under the venv's
bin/
directory have
python -sE
in the shebangs. Is there a way to prevent pex from adding the
-E
param in the shebang? I need them to respect
PYTHONPATH
.
I guess I need to somehow pass
--non-hermetic-scripts
to the
pex venv
invocation that happens in
pants export
.