aboutsummaryrefslogtreecommitdiff
path: root/bash/bash_logout
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2013-07-31 17:33:34 +1200
committerTom Ryder <tom@sanctum.geek.nz>2013-07-31 17:33:34 +1200
commit21a48d89b006c9faa67c8fa5512bc9b52e7e1d1c (patch)
tree1749e937b0521bbf901360682ac63face749ff8b /bash/bash_logout
parentUse standard structure for if/for in shell (diff)
downloaddotfiles-21a48d89b006c9faa67c8fa5512bc9b52e7e1d1c.tar.gz
dotfiles-21a48d89b006c9faa67c8fa5512bc9b52e7e1d1c.zip
Stop ignoring error output from setup commands
Diffstat (limited to 'bash/bash_logout')
-rw-r--r--bash/bash_logout2
1 files changed, 1 insertions, 1 deletions
diff --git a/bash/bash_logout b/bash/bash_logout
index c9b0ec6f..4438bbe6 100644
--- a/bash/bash_logout
+++ b/bash/bash_logout
@@ -1,6 +1,6 @@
# Clear console if possible when logging out
if [[ "$SHLVL" = 1 ]]; then
- command -v clear_console &>/dev/null \
+ command -v clear_console >/dev/null \
&& clear_console -q
fi