diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2014-02-28 08:06:29 +0100 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2014-02-28 08:06:29 +0100 |
commit | 60fbf331c4f5692bbc6017e05bda9072091b0c51 (patch) | |
tree | 666a1612741a5a4b83495ea41a06af99080c855a | |
parent | 45a9edda0ee135ef0ce9d2b1c8cb97ed00abb8ee (diff) |
bashrc: Fix syntax
-rw-r--r-- | .bashrc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ # ~/.bashrc: executed by bash(1) for non-login shells. # use zsh if available and configured -if [ -f /bin/zsh && -f .zsh/override_bash ] ; then +if [ -f /bin/zsh ] && [ -f .zsh/override_bash ] ; then exec /bin/zsh fi |