mirror of
https://github.com/sshuttle/sshuttle.git
synced 2024-11-14 03:54:40 +01:00
65e81d51c6
Python 3.0, 3.1, 3.2, and 3.4 not supported however.
7 lines
117 B
Bash
Executable File
7 lines
117 B
Bash
Executable File
#!/bin/sh
|
|
if python3.5 -V 2>/dev/null; then
|
|
exec python3 -m "sshuttle" "$@"
|
|
else
|
|
exec python -m "sshuttle" "$@"
|
|
fi
|