From bba40557741686fb8ccbf2e92aa16f85f37b840d Mon Sep 17 00:00:00 2001
From: Fabio Manganiello <fabio@manganiello.tech>
Date: Fri, 28 Feb 2025 01:43:43 +0100
Subject: [PATCH] Fixed build execution in Makefile

---
 Makefile | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/Makefile b/Makefile
index 8a82e90..2ae9c4e 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
 all:
-	npm install
-	npm run build
-	cd frontend
-	npm install
-	npm run build
+	npm install && \
+		npm run build && \
+		cd frontend && \
+		npm install && \
+		npm run build