fix permission in release script

This commit is contained in:
Tobias Powalowski 2022-01-29 08:26:04 +01:00
parent 29daa1627c
commit cdff2af126
2 changed files with 2 additions and 0 deletions

View file

@ -66,6 +66,7 @@ cd "${_ISODIR}" || exit 1
"archboot-${_ARCH}-release.sh" "${_BUILDDIR}" || (rm -r "${_BUILDDIR}"; exit 1)
# set user rights on files
# set user rights on files
chmod 755 "${_BUILDDIR}"
chown -R "${_USER}" "${_BUILDDIR}"
chgrp -R "${_GROUP}" "${_BUILDDIR}"
cd "${_BUILDDIR}" || exit 1

View file

@ -39,6 +39,7 @@ cp "${_PACMAN_CONF}".old "${_PACMAN_CONF}"; exit 1)
cp "${_PACMAN_MIRROR}".old "${_PACMAN_MIRROR}"
cp "${_PACMAN_CONF}".old "${_PACMAN_CONF}"
# set user rights on files
chmod 755 "${_BUILDDIR}"
chown -R "${_USER}" "${_BUILDDIR}"
chgrp -R "${_GROUP}" "${_BUILDDIR}"
cd "${_BUILDDIR}" || exit 1