mirror of
https://github.com/sshuttle/sshuttle.git
synced 2024-11-14 20:14:28 +01:00
d4f10b232a
* Make compatible with setuptools. * Load modules via ssh into separate modules, not the one name space.
7 lines
115 B
Bash
Executable File
7 lines
115 B
Bash
Executable File
#!/bin/sh
|
|
if python2 -V 2>/dev/null; then
|
|
exec python2 -m "sshuttle" "$@"
|
|
else
|
|
exec python -m "sshuttle" "$@"
|
|
fi
|