summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian May <brian@linuxpenguins.xyz>2016-01-30 11:27:37 +1100
committerBrian May <brian@linuxpenguins.xyz>2016-01-30 11:27:37 +1100
commite06f0240cb38b954b412257baa815ef8a8534ebf (patch)
treef088f1fee9519ce707a982f8871daf946f761d3e
parent517fc2c9309b4c111580d99273c4bb8bf1b823e2 (diff)
Make sure we use Python 3.5
-rwxr-xr-xrun2
1 files changed, 1 insertions, 1 deletions
diff --git a/run b/run
index b4fa803..35bf4d0 100755
--- a/run
+++ b/run
@@ -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