add exit 1 on same points as on aarch64

This commit is contained in:
Tobias Powalowski 2022-01-13 16:58:38 +01:00
parent 70a7c7817e
commit 2dc03fb238
3 changed files with 2 additions and 3 deletions

View file

@ -6,7 +6,6 @@ _X86_64="$(mktemp -d X86_64.XXX)"
_SHIM_URL="https://kojipkgs.fedoraproject.org/packages/shim/15.4/5/x86_64"
_SHIM_VERSION="shim-x64-15.4-5.x86_64.rpm"
_SHIM32_VERSION="shim-ia32-15.4-5.x86_64.rpm"
_LOG=""
usage () {
echo "${_BASENAME}: usage"

View file

@ -25,7 +25,7 @@ echo "Start release creation in $1 ..."
mkdir -p $1
cd $1
# create container
archboot-x86_64-create-container.sh "${_W_DIR}" -cc -cp -alf
archboot-x86_64-create-container.sh "${_W_DIR}" -cc -cp -alf || exit 1
# generate tarball in container, umount tmp it's a tmpfs and weird things could happen then
echo "Generate ISO ..."
systemd-nspawn -q -D "${_W_DIR}" /bin/bash -c "umount /tmp;archboot-x86_64-iso.sh -t -i=archrelease"

View file

@ -32,7 +32,7 @@ cp "${_PACMAN_MIRROR}".archboot "${_PACMAN_MIRROR}"
# create release in "${_BUILDDIR}"
cd "${_BUILDDIR}"
[[ -e "${_DIRECTORY}" ]] && rm -r "${_DIRECTORY}"
archboot-"${_ARCH}"-release.sh "${_DIRECTORY}"
archboot-"${_ARCH}"-release.sh "${_DIRECTORY}" || exit 1
# set user rights on files
chown -R "${_USER}" "${_DIRECTORY}"
chgrp -R "${_GROUP}" "${_DIRECTORY}"