install-update: Fix error message in die function

master
Dustin 2023-03-06 15:03:24 -06:00
parent dbc02a99a1
commit fe602f2a92
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ die() {
if [ $rc -eq 0 ]; then
rc=1
fi
error "$@"
eerror "$@"
exit $rc
}