diff options
Diffstat (limited to 'helpers')
-rwxr-xr-x | helpers/lh_binary_debian-installer | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/helpers/lh_binary_debian-installer b/helpers/lh_binary_debian-installer index 42412b0..b147b12 100755 --- a/helpers/lh_binary_debian-installer +++ b/helpers/lh_binary_debian-installer @@ -207,7 +207,13 @@ Download_file () { if [ ! -f "${_LH_CACHE_FILE}" ] then mkdir -p ${_LH_CACHE_DIR} - wget ${WGET_OPTIONS} -O "${_LH_CACHE_FILE}" "${_LH_URL}" + if ! wget ${WGET_OPTIONS} -O "${_LH_CACHE_FILE}" "${_LH_URL}" + then + rm -f "${_LH_CACHE_FILE}" + + Echo_error "Could not download file: ${_LH_URL}" + exit 1 + fi fi cp -fl "${_LH_CACHE_FILE}" "${_LH_TARGET}" |