From 51f9f590842f82a27a0cdd756f9f2a41ef13a9f9 Mon Sep 17 00:00:00 2001 From: Ricardo Pardini Date: Fri, 20 Jan 2023 19:04:57 +0100 Subject: [PATCH] armbian-next: back to cleaning downloaded bundles/gitballs after they've converted to bare tree & proven working --- lib/functions/compilation/kernel-git.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/functions/compilation/kernel-git.sh b/lib/functions/compilation/kernel-git.sh index 81bc62978..db5df113a 100644 --- a/lib/functions/compilation/kernel-git.sh +++ b/lib/functions/compilation/kernel-git.sh @@ -19,9 +19,8 @@ function kernel_cleanup_bundle_artifacts() { [[ -z "${git_bundles_dir}" ]] && exit_with_error "git_bundles_dir is not set" if [[ -d "${git_bundles_dir}" ]]; then - display_alert "Cleaning up Kernel git bundle artifacts" "no longer needed" "cachehit" - display_alert "NOT CLEANING BUNDLES" "${git_bundles_dir}" "warn" # @TODO remove "soon" - #run_host_command_logged rm -rf "${git_bundles_dir}" + display_alert "Cleaning up Kernel git bundle artifacts" "no longer needed" "info" + run_host_command_logged rm -rf "${git_bundles_dir}" fi return 0