Fixed spelling, print errors to stderr

This commit is contained in:
Armin Novak 2020-06-23 09:32:19 +02:00
parent 5490ce5099
commit b50525d1fb
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ function run {
RES=$?
if [[ $RES -ne 0 ]];
then
echo "[ERROR] $@ retured $RES"
echo "[ERROR] $@ returned $RES" >&2
exit 1
fi
}