From c423a205023f41c0c00f7e1183ac2eb4286ff923 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20Aksel=20Helbo=20Bjergmark?= Date: Sun, 25 Feb 2024 17:59:50 +0100 Subject: [PATCH] Disable parallel execution of commands causing race condition between mkdir and cp --- apps/api/project.json | 3 ++- apps/client/project.json | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/api/project.json b/apps/api/project.json index fb59eb70f..a9181b1eb 100644 --- a/apps/api/project.json +++ b/apps/api/project.json @@ -46,7 +46,8 @@ { "command": "shx cp -r apps/client/src/locales/* dist/apps/api/assets/locales" } - ] + ], + "parallel": false } }, "serve": { diff --git a/apps/client/project.json b/apps/client/project.json index 91370a184..c784e4b83 100644 --- a/apps/client/project.json +++ b/apps/client/project.json @@ -149,7 +149,8 @@ { "command": "shx cp LICENSE dist/apps/client/assets" } - ] + ], + "parallel": false } }, "serve": {