Make sure we use Python 3.5

This commit is contained in:
Brian May 2016-01-30 11:27:37 +11:00
parent 517fc2c930
commit e06f0240cb

2
run
View File

@ -1,6 +1,6 @@
#!/bin/sh
if python3.5 -V 2>/dev/null; then
exec python3 -m "sshuttle" "$@"
exec python3.5 -m "sshuttle" "$@"
else
exec python -m "sshuttle" "$@"
fi