From 38b7571b50f3c74cfdde67b0248203f37158fd23 Mon Sep 17 00:00:00 2001 From: Matthew Quinn Date: Wed, 10 Jul 2024 12:50:01 +0100 Subject: [PATCH] split prebuild commands to avoid using shell --- pre_build.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pre_build.py b/pre_build.py index 3718df8b37..c096e12ce9 100644 --- a/pre_build.py +++ b/pre_build.py @@ -12,7 +12,8 @@ def build() -> None: print("Skipping front end build...") return print("Building front end...") - subprocess.run(["make", "frontend_build"]) + subprocess.run(["yarn", "webui:install"]) + subprocess.run(["yarn", "webui:build"]) if __name__ == "__main__":