Merge branch 'env-dash-S' of https://github.com/carmenbianca/xonsh into carmenbianca-env-dash-S

This commit is contained in:
Anthony Scopatz 2019-05-21 18:21:08 -05:00
commit 48e063f09e
2 changed files with 7 additions and 1 deletions

6
news/env-dash-S.rst Normal file
View file

@ -0,0 +1,6 @@
**Fixed:**
* An error in the 'xon.sh' executable that only popped up during testing has
been fixed. Specifically: It now directly calls 'python3' without invoking
'env'.

View file

@ -7,4 +7,4 @@ if [ -z "${LC_ALL+x}" ] && [ -z "${LC_CTYPE+x}" ] && \
fi
# run python
exec /usr/bin/env PYTHONUNBUFFERED=1 python3 -u -m xonsh "$@"
exec python3 -u -m xonsh "$@"