Fix rm command

This commit is contained in:
the-sane 2024-12-23 09:53:18 -05:00
parent c4f095bce2
commit f9ac764bd4

View File

@ -1893,7 +1893,7 @@ download_install() {
# Cleanup tmp download
debug_print continue "Cleaning up $tmp_dir/$download_filename..."
rm --interactive=never "${tmp_dir:?}/$download_filename"
rm -r "${tmp_dir:?}/$download_basename"
rm -r --interactive=never "${tmp_dir:?}/$download_basename"
return 0
}