From 1e3e490f1fa37cb71bc09cc278827dfa5cb3fa98 Mon Sep 17 00:00:00 2001 From: Arsen Date: Wed, 8 Apr 2026 10:05:05 +0500 Subject: [PATCH] do not overwrite exist settings files --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 0552dea..cf5f8d9 100755 --- a/install.sh +++ b/install.sh @@ -11,7 +11,7 @@ fi for i in ${REPO_OWNER}/${REPO_NAME}/system/settings/*.sample; do echo $$i; if [ ! -f "$${i/.sample/}" ]; then - cp "$$i" "$${i/.sample/}"; + cp -n "$$i" "$${i/.sample/}"; echo $${i/.sample/}; fi done