This commit is contained in:
teldra 2023-06-13 09:02:01 +02:00
parent 75c0c93d3d
commit f3dc5ee33a
1 changed files with 3 additions and 2 deletions

View File

@ -3,6 +3,7 @@
PASS="oem"
TIMEZONE="Europe/Berlin"
REPO=https://repo-default.voidlinux.org/current
main="/tmp/vinstall"
target="/mnt"
@ -286,9 +287,9 @@ do_install() {
fi
if [ "${DEBUG}" -ge "1" ]; then
xbps-install -S -R https://alpha.de.repo.voidlinux.org/current -R https://rotce.de/pakete -r "${target}" "${pkgs[@]}"
xbps-install -S -R "${REPO}" -R https://rotce.de/pakete -r "${target}" "${pkgs[@]}"
else
xbps-install -S -y -R https://alpha.de.repo.voidlinux.org/current -R https://rotce.de/pakete -r "${target}" "${pkgs[@]}"
xbps-install -S -y -R "${REPO}" -R https://rotce.de/pakete -r "${target}" "${pkgs[@]}"
fi
}