From 6a9257715b316a84feff78260055a3015ebd947f Mon Sep 17 00:00:00 2001 From: Fuxing Loh <4266087+fuxingloh@users.noreply.github.com> Date: Thu, 19 Mar 2026 12:37:09 +0000 Subject: [PATCH] fix --- .devcontainer/setup-gstack.sh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.devcontainer/setup-gstack.sh b/.devcontainer/setup-gstack.sh index f048e1a90..86bcca00c 100755 --- a/.devcontainer/setup-gstack.sh +++ b/.devcontainer/setup-gstack.sh @@ -6,12 +6,10 @@ SKILL_DIR="$HOME/.claude/skills" mkdir -p "$SKILL_DIR" -project_name="$(basename "$REPO_ROOT")" -target="$SKILL_DIR/$project_name" +target="$SKILL_DIR" -# Ensure target exists, then copy repo contents over it without deleting extras. -mkdir -p "$target" +# Copy repo contents into ~/.claude/skills without deleting existing files. cp -a "$REPO_ROOT"/. "$target"/ echo "Skill directory: $SKILL_DIR" -echo "Copied project: $project_name -> $target" +echo "Copied project root into: $target"