From 545ae213c34a02e1381be58c88f15f77696f4f88 Mon Sep 17 00:00:00 2001 From: Shun Kakinoki Date: Fri, 3 Apr 2026 15:36:16 +0900 Subject: [PATCH] chore: update --- Makefile | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 789652e..1980e99 100644 --- a/Makefile +++ b/Makefile @@ -89,7 +89,8 @@ skills-clean: ## Remove all globally installed skills for a clean reinstall. .PHONY: skills-install skills-install: ## Install skills from SKILLS.txt (supports per-repo skill selection). - @grep -v '^\s*#' $(SKILLS_FILE) | grep -v '^\s*$$' | while IFS= read -r line; do \ + @failed=0; \ + grep -v '^\s*#' $(SKILLS_FILE) | grep -v '^\s*$$' | while IFS= read -r line; do \ repo=$$(echo "$$line" | awk '{print $$1}'); \ skill_args=$$(echo "$$line" | awk '{print $$2}' | tr ',' '\n' | sed '/^$$/d' | while read -r s; do printf " --skill $$s"; done); \ if [ -n "$$skill_args" ]; then \ @@ -97,20 +98,24 @@ skills-install: ## Install skills from SKILLS.txt (supports per-repo skill selec if bunx skills add $$repo --global --yes $$skill_args