From 0e3a00e31a5952db4dcae1efbd2bc071441db300 Mon Sep 17 00:00:00 2001 From: retrozinndev Date: Wed, 6 Aug 2025 16:37:57 -0300 Subject: [PATCH] :boom: fix(update-repo): only clean config_dirs instead of all the outdir --- update-repo.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/update-repo.sh b/update-repo.sh index 30177cc..c20ed37 100644 --- a/update-repo.sh +++ b/update-repo.sh @@ -15,7 +15,9 @@ Check_current_dir() { Clean_local() { Send_log "info" "Cleaning local config..." - rm -rf $outdir + for dir in ${config_dirs[@]}; do + rm -rf $outdir/$dir + done } Update_local() {