diff options
author | Daniel Baumann <daniel@debian.org> | 2010-04-02 17:48:03 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2010-04-09 21:28:42 +0200 |
commit | 9fdf028aa8e6a5e752bda5c33ef71dbf6c3b4480 (patch) | |
tree | 737df366cba90333966e404100002c8a1885b36e /helpers/binary_debian-installer | |
parent | 2b25d825faa06e6889f41122cf14706a473154b8 (diff) | |
download | vyos-live-build-9fdf028aa8e6a5e752bda5c33ef71dbf6c3b4480.tar.gz vyos-live-build-9fdf028aa8e6a5e752bda5c33ef71dbf6c3b4480.zip |
Making handling of cache/packages_bootstrap a bit more error proove, thanks to Michal Suchanek <michal.suchanek@ruk.cuni.cz> for bringing it up.
Diffstat (limited to 'helpers/binary_debian-installer')
-rwxr-xr-x | helpers/binary_debian-installer | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helpers/binary_debian-installer b/helpers/binary_debian-installer index 5c224ae56..1cf79cd8d 100755 --- a/helpers/binary_debian-installer +++ b/helpers/binary_debian-installer @@ -415,14 +415,14 @@ then if [ "${LH_DEBIAN_INSTALLER}" != "live" ] then # Including base debian packages - if [ -d cache/packages_bootstrap ] + if ls cache/packages_bootstrap/*.deb > /dev/null 2>&1 then for FILE in cache/packages_bootstrap/*.deb do Install_file "${FILE}" "binary/pool/main" done else - Echo_error "Could not find cache/packages_bootstrap." + Echo_error "Could not find packages in cache/packages_bootstrap." Echo_error "You selected values of LH_CACHE, LH_CACHE_PACKAGES, LH_CACHE_STAGES and LH_DEBIAN_INSTALLER which will result in 'bootstrap' packages not being cached - these are required when integrating the Debian Installer." exit 1 fi |