summaryrefslogtreecommitdiffstats
path: root/run
diff options
context:
space:
mode:
authorBrian May <brian@linuxpenguins.xyz>2015-12-05 14:40:59 +1100
committerBrian May <brian@linuxpenguins.xyz>2015-12-05 14:41:22 +1100
commit65e81d51c6968b46bd035dada54213b654a580b8 (patch)
treeecfbc36f48699ae12b9178d48faa0b9725a3895e /run
parent43084eb49aab5f7e85b270ca977c2f238efa1e3f (diff)
Try Python3.5 by default.
Python 3.0, 3.1, 3.2, and 3.4 not supported however.
Diffstat (limited to 'run')
-rwxr-xr-xrun2
1 files changed, 1 insertions, 1 deletions
diff --git a/run b/run
index 9232659..b4fa803 100755
--- a/run
+++ b/run
@@ -1,5 +1,5 @@
#!/bin/sh
-if python3 -V 2>/dev/null; then
+if python3.5 -V 2>/dev/null; then
exec python3 -m "sshuttle" "$@"
else
exec python -m "sshuttle" "$@"