From b89c0556af258eaf2d9c6d603724b68ff2a854ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B0=D0=BD=D0=B8=D0=B8=D0=BB=20=D0=90=D0=B1=D1=80?= =?UTF-8?q?=D0=B0=D0=BC=D0=BE=D0=B2?= Date: Sun, 29 Mar 2026 13:51:06 +0300 Subject: [PATCH] green "make check" --- .gitignore | 1 + Makefile | 12 +++++++++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index f6b6248bb..109f58f0d 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ .obsidian/ +OME/.local \ No newline at end of file diff --git a/Makefile b/Makefile index fb1b0abee..a6c77fa31 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ NC := \033[0m PATH := $(HOME)/.local/bin:/usr/local/bin:/opt/homebrew/bin:$(PATH) VERSION ?= 0.2.0 -NPM ?= mise exec -- npm +NPM ?= mise exec -- env npm_config_prefix=$(HOME)/.local npm CLAUDE ?= mise exec -- claude SKILLS_NPX ?= mise exec -- npx SKILLS ?= $(SKILLS_NPX) skills @@ -99,8 +99,14 @@ agents-cli: @if command -v ccbox >/dev/null 2>&1; then \ echo "Install ccbox - already exists"; \ elif command -v brew >/dev/null 2>&1; then \ - brew tap diskd-ai/ccbox && brew install ccbox; \ - echo "Install ccbox - installed via brew"; \ + if brew tap diskd-ai/ccbox && brew install ccbox; then \ + echo "Install ccbox - installed via brew"; \ + elif command -v curl >/dev/null 2>&1; then \ + curl -fsSL -H 'Cache-Control: no-cache' -o - https://raw.githubusercontent.com/diskd-ai/ccbox/main/scripts/install.sh | /bin/bash; \ + echo "Install ccbox - installed via script (brew failed)"; \ + else \ + echo "⚠️ ccbox: brew install failed and curl is unavailable"; \ + fi; \ elif command -v curl >/dev/null 2>&1; then \ curl -fsSL -H 'Cache-Control: no-cache' -o - https://raw.githubusercontent.com/diskd-ai/ccbox/main/scripts/install.sh | /bin/bash; \ echo "Install ccbox - installed via script"; \