Skip to content

Commit 5b3ea64

Browse files
committed
fix(step-1,step-2): correct tool count, phantom alias, and missing summary rows
step-1: banner said "4 tools" but summary lists 5 (Homebrew, Git, Node, npm, Claude Code); bump to "5 tools". Also add shell aliases (cc, ccr, ccc, cskip) and ctg command to print_summary() — they were installed but invisible in the completion table. step-2/ghostty-install.sh: replace phantom "cbrain" alias reference with the real Step 1 aliases (cc, ccr, ccc, cskip). cbrain is not installed by any step — cbraintg (step-6) and the four step-1 aliases are the actual commands.
1 parent b0436d3 commit 5b3ea64

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

step-1/step-1-install.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,6 +584,8 @@ print_summary() {
584584
echo " Node.js $(node -v 2>/dev/null || echo '')"
585585
echo " npm v$(npm -v 2>/dev/null || echo '')"
586586
echo " Claude Code $(claude --version 2>/dev/null || echo '')"
587+
echo " Shell aliases cc, ccr, ccc, cskip"
588+
echo " ctg command ~/.local/bin/ctg"
587589
echo ""
588590
if [ "$ERRORS" -gt 0 ]; then
589591
echo -e " ${YELLOW}Warnings: $ERRORS non-critical tool(s) failed to install.${NC}"
@@ -604,7 +606,7 @@ main() {
604606
echo ""
605607
echo -e "${BLUE}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}"
606608
echo -e "${BLUE} Step 1 — Get Claude Running${NC}"
607-
echo -e "${BLUE} 4 tools • macOS + Linux${NC}"
609+
echo -e "${BLUE} 5 tools • macOS + Linux${NC}"
608610
echo -e "${BLUE}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}"
609611
echo ""
610612
echo -e " ${YELLOW}Note: This script installs everything automatically, but${NC}"

step-2/ghostty-install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ print_summary() {
443443
echo " Open Ghostty from Spotlight (Cmd+Space, type Ghostty)"
444444
echo " Cmd+T to open a new tab"
445445
echo " Cmd+Click any URL or file path to open it"
446-
echo " Shell aliases (cskip, cbrain, etc.) set up by other steps work here automatically"
446+
echo " Shell aliases (cc, ccr, ccc, cskip) set up by Step 1 work here automatically"
447447
echo ""
448448
if [ "$OS" = "mac" ]; then
449449
echo " Config location:"

0 commit comments

Comments
 (0)