summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2020-09-04 22:39:39 -0400
committerbill-auger <mr.j.spam.me@gmail.com>2020-09-05 04:32:48 -0400
commita6cd14f9bdb182a80ac9eb305ac8c4902059096c (patch)
tree5a4ab6e5e66eb4b23156c09e13cd592cf809ae40
parent9e07862acff674b2699084d6810c271b020c5838 (diff)
housekeeping
-rwxr-xr-xconfigs/profile/build.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/configs/profile/build.sh b/configs/profile/build.sh
index ca5d19a..cd42d30 100755
--- a/configs/profile/build.sh
+++ b/configs/profile/build.sh
@@ -464,8 +464,8 @@ elif [[ ${EUID} -ne 0 ]]; then
elif ! pacman --version | grep libalpm > /dev/null; then
LOG_ERROR "This script needs the 'pacman' package manager to be installed."
exit 1
-elif ! pacman -Qi parabolaiso-data > /dev/null; then
- LOG_ERROR "This script needs the 'parabolaiso-data' package to be installed."
+elif [[ "${archs}" =~ 'x86_64' ]] && ! pacman -Qi parabolaiso-data > /dev/null; then
+ LOG_ERROR "x86_64 ISOs require the 'parabolaiso-data' package to be installed."
exit 1
elif ! echo "${VALID_INITS[@]}" | tr " " "\n" | grep -E "^${iso_init}$" > /dev/null || \
! echo "${VALID_WMDES[@]}" | tr " " "\n" | grep -E "^${iso_wmde}$" > /dev/null ; then