From f3dc5ee33a1d44beedc802bfc5bcfd03f407a4d7 Mon Sep 17 00:00:00 2001 From: teldra Date: Tue, 13 Jun 2023 09:02:01 +0200 Subject: [PATCH] fixes --- main.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/main.sh b/main.sh index d24807b..30d4005 100755 --- a/main.sh +++ b/main.sh @@ -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 }