Fix bug of the additional package install

This commit is contained in:
Suikan 2021-07-01 14:53:29 +09:00
parent 53c4426a98
commit ea49d6d082

View file

@ -51,6 +51,14 @@ source _confirmation.sh
# Pre-install stage # Pre-install stage
# ******************************************************************************* # *******************************************************************************
# Install essential packages.
# If GUI environment, also install xterm to run the void-installer in a window
if [ ${GUIENV} -eq 1 ] ; then
xbps-install -y -Su xbps gptfdisk xterm
else
xbps-install -y -Su xbps gptfdisk
fi
# Common part of the pre-install stage # Common part of the pre-install stage
source _preinstall.sh source _preinstall.sh