Allow multiple packages to be installed

This commit is contained in:
Toyam Cox 2022-03-22 23:06:51 -04:00 committed by Michael Aldridge
parent 44135029c3
commit bdcc109f8b
1 changed files with 2 additions and 1 deletions

View File

@ -67,7 +67,8 @@ VAI_install_base_system() {
# Install additional packages
if [ -n "${pkgs}" ] ; then
XBPS_ARCH="${XBPS_ARCH}" xbps-install -Sy -R "${xbpsrepository}" -r /mnt "${pkgs}"
# shellcheck disable=SC2086
XBPS_ARCH="${XBPS_ARCH}" xbps-install -Sy -R "${xbpsrepository}" -r /mnt ${pkgs}
fi
}