scripts(termux_error_exit): echo with -e to allow multiline messages

This commit is contained in:
Henrik Grimler 2022-07-16 12:58:37 +02:00
parent d53bd8c0e3
commit 0de0a8dd52
No known key found for this signature in database
GPG Key ID: B0076E490B71616B
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
termux_error_exit() {
echo "ERROR: $*" 1>&2
echo -e "ERROR: $*" 1>&2
exit 1
}