mirror of
https://github.com/sshuttle/sshuttle.git
synced 2024-11-22 07:53:43 +01:00
74e308a29f
Sometime ago I was in python mode and incorrectly indented a line of the shell script with spaces instead of tabs. Shame on me. This should bring things back to their natural order.
9 lines
190 B
Bash
Executable File
9 lines
190 B
Bash
Executable File
#!/bin/sh
|
|
if python3.5 -V 2>/dev/null; then
|
|
exec python3.5 -m "sshuttle" "$@"
|
|
elif python2.7 -V 2>/dev/null; then
|
|
exec python2.7 -m "sshuttle" "$@"
|
|
else
|
|
exec python -m "sshuttle" "$@"
|
|
fi
|