summaryrefslogtreecommitdiffstats
path: root/run
diff options
context:
space:
mode:
authorBrian May <brian@linuxpenguins.xyz>2015-11-28 16:02:47 +1100
committerBrian May <brian@linuxpenguins.xyz>2015-11-28 16:02:47 +1100
commitc06c972039b94225cc06e9f7f70f28a4c2ace116 (patch)
tree02bec19ce0383b53dd24305fbf067b6ca655dfcd /run
parentda62fe5b8020d3910e0ebba8ad0348341d0b1f11 (diff)
Prefer Python3 by default.
Diffstat (limited to 'run')
-rwxr-xr-xrun4
1 files changed, 2 insertions, 2 deletions
diff --git a/run b/run
index 7fd71d4..9232659 100755
--- a/run
+++ b/run
@@ -1,6 +1,6 @@
#!/bin/sh
-if python2 -V 2>/dev/null; then
- exec python2 -m "sshuttle" "$@"
+if python3 -V 2>/dev/null; then
+ exec python3 -m "sshuttle" "$@"
else
exec python -m "sshuttle" "$@"
fi