From d26c2163e875caf048be67ac6c1cc8eb324f89fd Mon Sep 17 00:00:00 2001
From: Lucendio <dev@lucend.io>
Date: Mon, 10 May 2021 03:31:23 +0200
Subject: [PATCH] Fix 'folder not exist' error when running build target

---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 588d24d..44ffba8 100644
--- a/Makefile
+++ b/Makefile
@@ -42,7 +42,7 @@ clean:
 .PHONY: build
 build: SERVER_PUBLIC_URL ?= http://127.0.0.1:3001
 build: APP_BUILD_PATH ?= $(TEMP_DIR)
-build:
+build: $(TEMP_DIR)/
 	rm -rf "$(APP_BUILD_PATH)"
 
 	cp -r "$(MKFILE_DIR)/app/server/src" "$(APP_BUILD_PATH)"
-- 
GitLab