Arch work

This commit is contained in:
2023-01-06 16:35:57 -05:00
부모 2309b4b1d5
커밋 fec7e80361

파일 보기

@@ -867,13 +867,18 @@ installMCARCH() {
EOF
pushd "$OUTPUTDIR/PKGBUILD" || return
makepkg \
--syncdeps \
--clean \
--cleanbuild \
--force \
--install \
-p "mediacenter.pkgbuild"
makepkg_cmd="makepkg
--syncdeps
--clean
--cleanbuild
--force
--install
-p mediacenter.pkgbuild"
if ! exec ${makepkg_cmd}; then
if [[ $? -eq 10 ]]; then
su nobody exec "${makepkg_cmd}" # TODO, for testing in root VM
fi
fi
popd || return
}