summaryrefslogtreecommitdiffstats
path: root/Sshuttle VPN.app/Contents/Resources/sshuttle/sshuttle
blob: d832198ee4c0a41bcc67a17577b6261f31dc3ba2 (plain)
1
2
3
4
5
6
7
#!/bin/sh
DIR=$(dirname "$0")
if python2 -V 2>/dev/null; then
	exec python2 "$DIR/main.py" python2 "$@"
else
	exec python "$DIR/main.py" python "$@"
fi