summaryrefslogtreecommitdiff
path: root/bashrc
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2017-01-27 20:59:11 +0200
committerLars Wirzenius <liw@liw.fi>2017-01-27 20:59:11 +0200
commit1bd6d0633c4c402466150108cde692845267ef31 (patch)
tree4cda7bf3a6a5113957d139b20936140df41bce03 /bashrc
parent78c092d03cef4f16fbeb89e80f48e9a2ea1c2a3e (diff)
downloadliw-dot-files-1bd6d0633c4c402466150108cde692845267ef31.tar.gz
Make error status bold red
Diffstat (limited to 'bashrc')
-rw-r--r--bashrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/bashrc b/bashrc
index e53e1c0..55f80c2 100644
--- a/bashrc
+++ b/bashrc
@@ -146,7 +146,7 @@ tell_about_exit_code()
local exit_code="$1"
if [ "$exit_code" != 0 ]
then
- raw_termattr red
+ raw_termattr bold red
printf '[PREVIOUS COMMAND EXIT: %s]\n' "$exit_code"
raw_termattr normal
fi