From 74e308a29f8ea2605c29e8f414b43b47951674d6 Mon Sep 17 00:00:00 2001 From: vieira Date: Wed, 20 Apr 2016 00:54:11 +0000 Subject: 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. --- run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run b/run index 1a33f7a..5cf083f 100755 --- a/run +++ b/run @@ -2,7 +2,7 @@ if python3.5 -V 2>/dev/null; then exec python3.5 -m "sshuttle" "$@" elif python2.7 -V 2>/dev/null; then - exec python2.7 -m "sshuttle" "$@" + exec python2.7 -m "sshuttle" "$@" else exec python -m "sshuttle" "$@" fi -- cgit v1.2.3