summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvieira <vieira@yubo.be>2016-04-20 00:54:11 +0000
committerBrian May <brian@linuxpenguins.xyz>2016-04-20 15:17:07 +1000
commit74e308a29f8ea2605c29e8f414b43b47951674d6 (patch)
treec49cb0501777e538cbf3e14d68036137d7fadc83
parent516ff7bc4a1fd0d0848bb2f6a7c8b10a30023c34 (diff)
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.
-rwxr-xr-xrun2
1 files changed, 1 insertions, 1 deletions
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