revert portable trick for passing args.

Reverted commits are:
 - aa707c9453
 - da234b54e5

closes #3125
This commit is contained in:
Jean-Benoist Leger 2019-05-15 22:32:42 +02:00
parent 3b011dcfd1
commit 70bb91e504
Failed to generate hash of commit
2 changed files with 2 additions and 8 deletions

View file

@ -1,7 +1,4 @@
#!/bin/sh
''''exec python3 -u "$0" "$@"
'''#'
# Portable trick to pass option [-u] to python3, more portable than /usr/bin/env.
#!/usr/bin/env python3 -u
from xonsh.main import main
main()

View file

@ -1,7 +1,4 @@
#!/bin/sh
''''exec python3 -u "$0" "$@"
'''#'
# Portable trick to pass option [-u] to python3, more portable than /usr/bin/env.
#!/usr/bin/env python3 -u
from xonsh.xoreutils.cat import cat_main as main
main()