From 04e2cc30714052e4e1cc744b9f4e5dc059f49058 Mon Sep 17 00:00:00 2001 From: richblack Date: Sun, 14 Jun 2026 17:25:39 +0800 Subject: [PATCH] Fix install source to match uncle6me-web repo install.sh REPO_URL and README install commands were hardcoded to richblack/system-dev-template while this repo lives at uncle6me-web/system-dev-template. The mismatch made the installer pull executable config (.claude/commands/*.md) from a different repo name than the one users name, which the classifier blocks. Point all sources at uncle6me-web so the install source matches the repo name. Co-Authored-By: Claude Opus 4.8 (1M context) --- README.md | 4 ++-- scripts/install.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 097a1ed..0457843 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ CC 是個優秀的工程師,但不是個好的專案經理。它會猛衝完 ### 方式一:新專案 ```bash -git clone https://github.com/richblack/system-dev-template +git clone https://github.com/uncle6me-web/system-dev-template cp -r system-dev-template/template/. your-new-project/ cd your-new-project ``` @@ -37,7 +37,7 @@ cd your-new-project ```bash cd your-existing-project -curl -sSL https://raw.githubusercontent.com/richblack/system-dev-template/main/scripts/install.sh | bash +curl -sSL https://raw.githubusercontent.com/uncle6me-web/system-dev-template/main/scripts/install.sh | bash ``` 腳本只建立缺少的東西,**已有的檔案一律不動**。 diff --git a/scripts/install.sh b/scripts/install.sh index ced9958..ef7ba38 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -4,7 +4,7 @@ set -e -REPO_URL="https://raw.githubusercontent.com/richblack/system-dev-template/main/template" +REPO_URL="https://raw.githubusercontent.com/uncle6me-web/system-dev-template/main/template" CREATED=() SKIPPED=()