summaryrefslogtreecommitdiff
path: root/libui.sh
diff options
context:
space:
mode:
authorDieter Plaetinck <dieter@plaetinck.be>2010-12-31 15:49:44 +0100
committerDieter Plaetinck <dieter@plaetinck.be>2010-12-31 15:49:44 +0100
commit746e1ade11eece4ec6ef1553fb5e7f38fb580023 (patch)
tree5b458b8163898fc006b3e51d7cd5bf6a97c1e07a /libui.sh
parentcb9574bb64d994d91e52069840f8e06995bc3843 (diff)
allow backslash codes in die_error message
Diffstat (limited to 'libui.sh')
-rw-r--r--libui.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/libui.sh b/libui.sh
index 2e52fc9..b3a4bc0 100644
--- a/libui.sh
+++ b/libui.sh
@@ -91,7 +91,7 @@ seteditor() {
# Do not call other functions like debug, notify, .. here because that might cause loops!
die_error ()
{
- echo "ERROR: $@" >&2
+ echo -e "ERROR: $@" >&2
exit 2
}