From 9b49f8dc59e3e807c4089be03db4d88cd6a176db Mon Sep 17 00:00:00 2001 From: ludeeus Date: Tue, 3 Feb 2026 17:28:08 +0000 Subject: [PATCH 1/2] Replace yarn command with script/bootstrap in bootstrap target --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 20218fb45..931122103 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ start: ## Start the frontend bootstrap: ## Run yarn git submodule update --init; - yarn; + script/bootstrap; build: ## Build the frontend yarn build; From 1d63376ae441ab3cc03356200ec9c7603018a035 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20S=C3=B8rensen?= Date: Tue, 3 Feb 2026 18:31:51 +0100 Subject: [PATCH 2/2] Update Makefile Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 931122103..4503d264c 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ init: bootstrap start: ## Start the frontend yarn start; -bootstrap: ## Run yarn +bootstrap: ## Bootstrap the development environment git submodule update --init; script/bootstrap;