Added "Error: " prefix in _exit_err()

All stdout generated with the _exit_err() function gets a prefix:
"Error: " for better usability.
This commit is contained in:
testing_rouxdo 2015-09-06 16:35:53 +02:00
parent e2ca223432
commit 977c7e9c1f
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ _techo()
# exit on error # exit on error
_exit_err() _exit_err()
{ {
_techo "$@" _techo "Error: $@"
rm -f "${TMP}" rm -f "${TMP}"
exit 1 exit 1
} }