From 372d0085454198ae9836e8b3f49954f866ea54af Mon Sep 17 00:00:00 2001 From: mirzaev Date: Tue, 4 Nov 2025 16:12:31 +0700 Subject: [PATCH] added copying `*.sample` files script --- install.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/install.sh b/install.sh index 4ce2d31..3215f19 100755 --- a/install.sh +++ b/install.sh @@ -8,3 +8,8 @@ if [ -d author ]; then mv author ${REPO_OWNER} fi +if [ -e ${REPO_OWNER}/${REPO_NAME}/system/settings/*.sample ]; then + for i in ${REPO_OWNER}/${REPO_NAME}/system/settings/*.sample; do + cp "$i" "${i/.sample/}"; + done +fi