From ec8246ebda180cefa05fb35fa76b941cf95b62e2 Mon Sep 17 00:00:00 2001 From: pooneyy <85266337+pooneyy@users.noreply.github.com> Date: Tue, 3 Mar 2026 13:53:54 +0800 Subject: [PATCH] fix(update_local_appstore): optimize temporary directory cleanup logic - move temporary directory cleanup outside of conditional block - ensure cleanup always runs regardless of previous conditions --- update_local_appstore.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/update_local_appstore.sh b/update_local_appstore.sh index ffb502e14..9ccee2e5f 100644 --- a/update_local_appstore.sh +++ b/update_local_appstore.sh @@ -189,6 +189,5 @@ else else cp -rf $TEMP_DIR/apps/* $BASE_DIR/1panel/resource/apps/local/ fi - - rm -rf $TEMP_DIR -fi \ No newline at end of file +fi +rm -rf $TEMP_DIR \ No newline at end of file