mirror of
https://github.com/sshuttle/sshuttle.git
synced 2025-04-21 09:48:51 +02:00
Don't mix tab and spaces in shell script
Sometime ago I was in python mode and incorrectly indented a line of the shell script with spaces instead of tabs. Shame on me. This should bring things back to their natural order.
This commit is contained in:
parent
516ff7bc4a
commit
74e308a29f
2
run
2
run
@ -2,7 +2,7 @@
|
|||||||
if python3.5 -V 2>/dev/null; then
|
if python3.5 -V 2>/dev/null; then
|
||||||
exec python3.5 -m "sshuttle" "$@"
|
exec python3.5 -m "sshuttle" "$@"
|
||||||
elif python2.7 -V 2>/dev/null; then
|
elif python2.7 -V 2>/dev/null; then
|
||||||
exec python2.7 -m "sshuttle" "$@"
|
exec python2.7 -m "sshuttle" "$@"
|
||||||
else
|
else
|
||||||
exec python -m "sshuttle" "$@"
|
exec python -m "sshuttle" "$@"
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user