From 699fe256d0d85b9b7bae6dd6483fd9a2e793a579 Mon Sep 17 00:00:00 2001 From: Ehco1996 Date: Sun, 3 Mar 2024 19:41:15 +0800 Subject: [PATCH] address comment --- makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/makefile b/makefile index 1e8ab1b..f846d30 100644 --- a/makefile +++ b/makefile @@ -3,7 +3,7 @@ BACKEND_DIR = . .PHONY: all build-frontend start-backend -all: start-frontend start-backend +all: build-frontend start-backend build-frontend: @echo "Building frontend..." @@ -12,4 +12,3 @@ build-frontend: start-backend: @echo "Starting backend dev server..." @cd $(BACKEND_DIR) && go run main.go & -