From bbdbf39005d7bd85ca3e14cb91742ce987b82ab5 Mon Sep 17 00:00:00 2001 From: pooneyy <85266337+pooneyy@users.noreply.github.com> Date: Sat, 28 Feb 2026 16:58:47 +0800 Subject: [PATCH] chore(scripts): improve temp directory handling in update script - replace hardcoded `/tmp/localApps` with `mktemp -d` for secure, unique temporary directory creation --- update_local_appstore.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update_local_appstore.sh b/update_local_appstore.sh index 33c279511..d4735ef32 100644 --- a/update_local_appstore.sh +++ b/update_local_appstore.sh @@ -74,7 +74,7 @@ else fi fi -TEMP_DIR="/tmp/localApps" +TEMP_DIR=$(mktemp -d) repo_prefixs=( 'https://github.com'