summaryrefslogtreecommitdiff
path: root/src/bash/_bashrc
diff options
context:
space:
mode:
Diffstat (limited to 'src/bash/_bashrc')
-rw-r--r--src/bash/_bashrc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bash/_bashrc b/src/bash/_bashrc
index df0c285..af3ee3e 100644
--- a/src/bash/_bashrc
+++ b/src/bash/_bashrc
@@ -1,7 +1,7 @@
-WINDOOF=$(if test -d /c/Windows; then echo true; else echo false; fi)
+WINDOOF=$(if [ -d /c/Windows ]; then echo true; else echo false; fi)
-if test -d ~/.bin ; then
+if [ -d ~/.bin ]; then
PATH=~/.bin:$PATH
fi
@@ -33,7 +33,7 @@ if $WINDOOF; then
# Fix vim-behind-ssh on windoof
# TODO this fixes the remote shell, but breaks the local one (Eg del prints
# tilde). Grr ....
- #if test -n "$ConEmuBuild"; then TERM=dumb; export TERM; fi
+ #if [ -n "$ConEmuBuild" ]; then TERM=dumb; export TERM; fi
fi