We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a954a1 commit 0ce8369Copy full SHA for 0ce8369
1 file changed
Makefile
@@ -125,8 +125,7 @@ docs: ## Run docs with bun
125
ralph: check_jq ## Run Ralph agent loop
126
@echo "$(RED)⚠️ WARNING: Ralph is an autonomous agent that can modify your codebase.$(RESET)"
127
@echo "$(RED)⚠️ It is HIGHLY RECOMMENDED to run Ralph in a sandboxed environment.$(RESET)"
128
- @echo "$(YELLOW)Press Ctrl+C to abort, or wait 3 seconds to continue...$(RESET)"
129
- @sleep 3
+ @printf "$(YELLOW)Are you sure you want to continue? [y/N] $(RESET)" && read ans && [ "$$ans" = "y" ] || (echo "$(RED)Aborted.$(RESET)"; exit 1)
130
@echo "$(GREEN)🤖 Starting Ralph Agent...$(RESET)"
131
@chmod +x scripts/ralph.sh
132
@./scripts/ralph.sh $(ARGS)
0 commit comments