skip download graphics on riscv64

This commit is contained in:
Tobias Powalowski 2022-11-09 10:34:04 +01:00
parent 28369c9cb0
commit 223c63f565
2 changed files with 2 additions and 2 deletions

View file

@ -34,7 +34,7 @@ if [[ "${_RUNNING_ARCH}" == "x86_64" ]]; then
_install_archboot "${1}" "use_binfmt" || exit 1 _install_archboot "${1}" "use_binfmt" || exit 1
_fix_groups "${1}" _fix_groups "${1}"
_clean_mkinitcpio "${1}" _clean_mkinitcpio "${1}"
_download_graphical "${1}" || exit 1 _download_graphical "${1}" "use_binfmt" || exit 1
_clean_cache "${1}" _clean_cache "${1}"
_clean_container "${1}" 2>/dev/null _clean_container "${1}" 2>/dev/null
fi fi

View file

@ -34,7 +34,7 @@ if [[ "${_RUNNING_ARCH}" == "x86_64" ]]; then
_install_archboot "${1}" "use_binfmt" || exit 1 _install_archboot "${1}" "use_binfmt" || exit 1
_fix_groups "${1}" _fix_groups "${1}"
_clean_mkinitcpio "${1}" _clean_mkinitcpio "${1}"
_download_graphical "${1}" || exit 1 _download_graphical "${1}" "use_binfmt" || exit 1
_clean_cache "${1}" _clean_cache "${1}"
_clean_container "${1}" 2>/dev/null _clean_container "${1}" 2>/dev/null
fi fi