Exit with 1 (instead of -1/255)

This commit is contained in:
Nils Freydank 2023-10-01 19:01:31 +02:00
parent 605e987bc8
commit 290af04d1f
Signed by: nfr
GPG Key ID: 0F1DEAB2D36AD112
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ PODMAN_BUILD_ARGS=(
exit_err()
{
echo "${@}"
exit -1
exit 1
}
_mkdir()

View File

@ -41,7 +41,7 @@ PODMAN_BUILD_ARGS=(
exit_err()
{
echo "${@}"
exit -1
exit 1
}
_mkdir()