Skip to content

Commit d001a3e

Browse files
authored
Merge pull request #10 from ryanmac/feature/installer-environment-selection
Fix color output in installer terminal display
2 parents 8a886f2 + 23fb426 commit d001a3e

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

conductor-init.sh

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -392,15 +392,15 @@ case "$ENV_CHOICE" in
392392
echo "📋 Next Steps:"
393393
echo ""
394394
echo "1. Open Conductor app:"
395-
echo " ${GREEN}open -a Conductor${NC}"
395+
echo -e " ${GREEN}open -a Conductor${NC}"
396396
echo ""
397397
echo "2. Add this project as a workspace:"
398-
echo " • In Conductor: ${YELLOW}File → Add Workspace${NC}"
399-
echo " • Select directory: ${GREEN}$(pwd)${NC}"
398+
echo -e " • In Conductor: ${YELLOW}File → Add Workspace${NC}"
399+
echo -e " • Select directory: ${GREEN}$(pwd)${NC}"
400400
echo ""
401401
echo "3. Start working with this prompt:"
402402
echo ""
403-
echo " ${YELLOW}\"Check available tasks and start working on the highest priority one.\"${NC}"
403+
echo -e " ${YELLOW}\"Check available tasks and start working on the highest priority one.\"${NC}"
404404
echo ""
405405
echo "💡 Pro Tips:"
406406
echo " • Conductor will handle task claiming and worktree setup automatically"
@@ -454,7 +454,7 @@ case "$ENV_CHOICE" in
454454
else
455455
echo ""
456456
echo "📋 To start an agent later:"
457-
echo " ${GREEN}bash .conductor/scripts/bootstrap.sh dev${NC}"
457+
echo -e " ${GREEN}bash .conductor/scripts/bootstrap.sh dev${NC}"
458458
fi
459459
;;
460460

@@ -482,13 +482,13 @@ if [ "$ENV_CHOICE" != "1" ]; then
482482
echo " ✅ Specialized roles: ${CONFIGURED_ROLES}"
483483
echo " ✅ Demo tasks ready to claim"
484484
echo ""
485-
echo "${YELLOW}Quick Start Commands:${NC}"
486-
echo " 📋 View tasks: ${GREEN}cat .conductor/workflow-state.json | jq '.available_tasks'${NC}"
487-
echo " 🤖 Start agent: ${GREEN}bash .conductor/scripts/bootstrap.sh dev${NC}"
488-
echo " 📝 Create task: ${GREEN}gh issue create -l 'conductor:task'${NC}"
489-
echo " 🔧 Adjust config: ${GREEN}$EDITOR .conductor/config.yaml${NC}"
485+
echo -e "${YELLOW}Quick Start Commands:${NC}"
486+
echo -e " 📋 View tasks: ${GREEN}cat .conductor/workflow-state.json | jq '.available_tasks'${NC}"
487+
echo -e " 🤖 Start agent: ${GREEN}bash .conductor/scripts/bootstrap.sh dev${NC}"
488+
echo -e " 📝 Create task: ${GREEN}gh issue create -l 'conductor:task'${NC}"
489+
echo -e " 🔧 Adjust config: ${GREEN}$EDITOR .conductor/config.yaml${NC}"
490490
echo ""
491-
echo "${YELLOW}Your first PR will automatically get AI code reviews!${NC}"
491+
echo -e "${YELLOW}Your first PR will automatically get AI code reviews!${NC}"
492492
echo ""
493493
echo "📚 Documentation: https://github.com/ryanmac/code-conductor"
494494
echo "🐛 Report issues: https://github.com/ryanmac/code-conductor/issues"

0 commit comments

Comments
 (0)