From a8d557eb1b983426623a3336f0e1ab120ccd2369 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20Bjergmark?= Date: Sun, 25 Feb 2024 19:03:28 +0100 Subject: [PATCH] Disable parallel execution of commands causing race condition between mkdir and cp (#3052) --- 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": {