From f9ac764bd457386130c67fea3590ae91fca4b503 Mon Sep 17 00:00:00 2001 From: the-sane <3657071+the-sane@users.noreply.github.com> Date: Mon, 23 Dec 2024 09:53:18 -0500 Subject: [PATCH] Fix rm command --- lug-helper.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lug-helper.sh b/lug-helper.sh index 42abeab..1655b5b 100755 --- a/lug-helper.sh +++ b/lug-helper.sh @@ -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 }