From 843a162f1a942da109c9ab7c53ad7507a9f0b5ef Mon Sep 17 00:00:00 2001 From: Tony Tran Date: Fri, 15 May 2026 21:04:37 +0700 Subject: [PATCH] change install to setup --- update.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/update.sh b/update.sh index ed52ec8..2fe8c08 100755 --- a/update.sh +++ b/update.sh @@ -4,13 +4,13 @@ echo "Đang dừng cliproxyapi.service..." systemctl --user stop cliproxyapi.service -# Kiểm tra file install.sh có tồn tại không -if [ -f "install.sh" ]; then - echo "Tìm thấy install.sh, đang chạy..." - chmod +x install.sh # Đảm bảo quyền thực thi - ./install.sh +# Kiểm tra file setup.sh có tồn tại không +if [ -f "setup.sh" ]; then + echo "Tìm thấy setup.sh, đang chạy..." + chmod +x setup.sh # Đảm bảo quyền thực thi + ./setup.sh else - echo "Lỗi: Không tìm thấy file install.sh trong thư mục hiện tại" + echo "Lỗi: Không tìm thấy file setup.sh trong thư mục hiện tại" exit 1 fi