From 3212c7c5a2c1117ab3a20fce2692072f2fa2e641 Mon Sep 17 00:00:00 2001 From: Karesansui Date: Mon, 16 Mar 2026 20:58:59 +0900 Subject: [PATCH] fix(scripts): correct Makefile target name in docker.sh restart message (#1161) docker.sh restart() tells users to run `make docker-dev-logs`, but this target does not exist. The correct target is `make docker-logs`. Co-authored-by: Claude Opus 4.6 --- scripts/docker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/docker.sh b/scripts/docker.sh index c936f27..79fe5f3 100755 --- a/scripts/docker.sh +++ b/scripts/docker.sh @@ -234,7 +234,7 @@ restart() { echo -e "${GREEN}✓ Docker services restarted${NC}" echo "" echo " 🌐 Application: http://localhost:2026" - echo " 📋 View logs: make docker-dev-logs" + echo " 📋 View logs: make docker-logs" echo "" }