From b0bdf798a96e1f794a113d2470d07e9494f399e4 Mon Sep 17 00:00:00 2001 From: Daniel Legt Date: Thu, 30 Apr 2026 12:43:19 +0300 Subject: [PATCH] chore(script): update run script path Change the go run command to use the relative path ./cmd instead of the full package path ./cmd/main.go. --- run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.sh b/run.sh index 9ebe1f9..5aede2f 100755 --- a/run.sh +++ b/run.sh @@ -39,4 +39,4 @@ if [ "${1:-}" = "--docker" ]; then exit 0 fi -go run ./cmd/main.go run +go run ./cmd run