Improve download fail handling

This commit is contained in:
the-sane 2023-03-30 12:35:37 -04:00
parent e30d304647
commit 173f9d45d5

View File

@ -1425,7 +1425,10 @@ download_install() {
# Sanity check # Sanity check
if [ ! -f "$tmp_dir/$download_file" ]; then if [ ! -f "$tmp_dir/$download_file" ]; then
debug_print exit "Script error: The requested $download_type file was not downloaded. Aborting" # Something went wrong with the download and the file doesn't exist
message error "Something went wrong and the requested $download_type file could not be downloaded!"
debug_print continue "Download failed! File not found: $tmp_dir/$download_file"
return 1
fi fi
# Extract the archive to the tmp directory # Extract the archive to the tmp directory