Merge pull request #2 from greendeath/bug/error_prefix

Added "Error: " prefix in _exit_err()
This commit is contained in:
Nico Schottelius 2015-09-09 17:13:48 +02:00
commit 9d8a8a5a15
1 changed files with 1 additions and 1 deletions

View File

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