diff --git a/behave/container-build.sh b/behave/container-build.sh index 7f2afede..620732dc 100755 --- a/behave/container-build.sh +++ b/behave/container-build.sh @@ -7,3 +7,5 @@ podman build "$@" \ --volume="$TOPDIR":/opt/obs \ $TOPDIR \ 2>&1 | tee container-build.log + +exit $? diff --git a/behave/container-run.sh b/behave/container-run.sh index 97fe76d8..0511ad39 100755 --- a/behave/container-run.sh +++ b/behave/container-run.sh @@ -17,3 +17,5 @@ podman run \ sleep 0.5 podman exec -it obs-server /usr/bin/systemctl is-system-running --wait + +exit $? diff --git a/behave/container-shell.sh b/behave/container-shell.sh index 9d648da0..cc6d584a 100755 --- a/behave/container-shell.sh +++ b/behave/container-shell.sh @@ -7,3 +7,5 @@ podman exec \ --tty \ obs-server \ /bin/bash + +exit $?