From f05b19888278a719716c75f53b7e867f91801bcd Mon Sep 17 00:00:00 2001 From: Jason Woltje Date: Wed, 1 Apr 2026 21:26:53 -0500 Subject: [PATCH] fix: remove stale bootstrap repo references from CLI error messages Replace 'cd ~/src/mosaic-bootstrap && bash install.sh' with 'npm install -g @mosaic/mosaic' now that bootstrap is archived. --- packages/mosaic/framework/bin/mosaic | 2 +- packages/mosaic/framework/bin/mosaic-wizard | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/mosaic/framework/bin/mosaic b/packages/mosaic/framework/bin/mosaic index 4cb9c55..2b9b352 100755 --- a/packages/mosaic/framework/bin/mosaic +++ b/packages/mosaic/framework/bin/mosaic @@ -88,7 +88,7 @@ check_mosaic_home() { check_agents_md() { if [[ ! -f "$MOSAIC_HOME/AGENTS.md" ]]; then echo "[mosaic] ERROR: ~/.config/mosaic/AGENTS.md not found." >&2 - echo "[mosaic] Re-run the installer: cd ~/src/mosaic-bootstrap && bash install.sh" >&2 + echo "[mosaic] Re-run the installer: npm install -g @mosaic/mosaic" >&2 exit 1 fi } diff --git a/packages/mosaic/framework/bin/mosaic-wizard b/packages/mosaic/framework/bin/mosaic-wizard index 0237392..044bf31 100755 --- a/packages/mosaic/framework/bin/mosaic-wizard +++ b/packages/mosaic/framework/bin/mosaic-wizard @@ -12,7 +12,7 @@ fi if [[ ! -f "$WIZARD_BIN" ]]; then echo "[mosaic-wizard] ERROR: Wizard bundle not found." >&2 - echo "[mosaic-wizard] Run 'pnpm build' in the mosaic-bootstrap repo, or re-install Mosaic." >&2 + echo "[mosaic-wizard] Re-install with: npm install -g @mosaic/mosaic" >&2 exit 1 fi