diff options
author | Roland Clobus <rclobus@rclobus.nl> | 2020-10-08 19:55:57 +0200 |
---|---|---|
committer | Roland Clobus <rclobus@rclobus.nl> | 2020-11-18 17:11:59 +0100 |
commit | 6e4e10f0712a211d947185d9847c3f211210be25 (patch) | |
tree | 9e5b0245c811fc74893cf833be83ca4d9db19414 /scripts | |
parent | 7360d50fa6b7ef4809d28cf873ab7d29dc2a6f97 (diff) | |
download | vyos-live-build-6e4e10f0712a211d947185d9847c3f211210be25.tar.gz vyos-live-build-6e4e10f0712a211d947185d9847c3f211210be25.zip |
Bugfix: LB_DERIVATIVE was used the wrong way around
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build/installer_debian-installer | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/build/installer_debian-installer b/scripts/build/installer_debian-installer index 3b615b0c2..6936666b6 100755 --- a/scripts/build/installer_debian-installer +++ b/scripts/build/installer_debian-installer @@ -230,11 +230,11 @@ DESTDIR_GI="${DESTDIR}/gtk" DAILY_DI_URL="https://d-i.debian.org/daily-images/${LB_ARCHITECTURE}/daily" case "${LB_DERIVATIVE}" in - false) + true) if [ "${LB_DEBIAN_INSTALLER_DISTRIBUTION}" = "daily" ] then - # FIXME: variable name should be decupled from derivatves - LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION="sid" + # FIXME: variable name should be decoupled from derivatives + LB_DEBIAN_INSTALLER_DISTRIBUTION="sid" URL="${DAILY_DI_URL}" else @@ -242,7 +242,7 @@ case "${LB_DERIVATIVE}" in fi ;; - true) + false) if [ "${LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION}" = "daily" ] then LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION="sid" |