From e30dfd3c57ca3f3ee6cf2b991e6a9844d73cfbd8 Mon Sep 17 00:00:00 2001 From: Tw93 Date: Wed, 31 Dec 2025 14:25:50 +0800 Subject: [PATCH] feat: add `--update` flag to `install.sh` to set update action --- install.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/install.sh b/install.sh index b26a952..b803de3 100755 --- a/install.sh +++ b/install.sh @@ -283,6 +283,10 @@ parse_args() { CONFIG_DIR="$2" shift 2 ;; + --update) + ACTION="update" + shift 1 + ;; --verbose | -v) VERBOSE=1 shift 1