diff options
author | Chris Lamb <chris@chris-lamb.co.uk> | 2008-08-10 07:02:33 +0100 |
---|---|---|
committer | Chris Lamb <chris@chris-lamb.co.uk> | 2008-08-10 07:02:33 +0100 |
commit | 14d1191d9057ad260de99de4ca06994cc64ab9e9 (patch) | |
tree | c971e3768b238d8ed133e4ce97ede23057c4509c /helpers | |
parent | 6ed6f6a172a2d863bd0b40bdb218e24d729b51d2 (diff) | |
download | vyos-live-build-14d1191d9057ad260de99de4ca06994cc64ab9e9.tar.gz vyos-live-build-14d1191d9057ad260de99de4ca06994cc64ab9e9.zip |
Fix bug in LH_DEBIAN_INSTALLER_DISTRIBUTION = "daily" handling.
Was causing build failures as it was trying to download files from a
"daily" component of a mirror.
Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
Diffstat (limited to 'helpers')
-rwxr-xr-x | helpers/lh_binary_debian-installer | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/helpers/lh_binary_debian-installer b/helpers/lh_binary_debian-installer index 38195979d..1e44f0a1a 100755 --- a/helpers/lh_binary_debian-installer +++ b/helpers/lh_binary_debian-installer @@ -250,6 +250,8 @@ fi if [ "${LH_DEBIAN_INSTALLER_DISTRIBUTION}" = "daily" ] then + LH_DEBIAN_INSTALLER_DISTRIBUTION="sid" + # Debian Installer daily builds case "${LH_ARCHITECTURE}" in alpha) |