From ccce3bcb8f7de56386e72b4cd1f9f5627f98b050 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Mon, 10 Feb 2025 11:40:14 +0100 Subject: [PATCH] :bug: Fix exporter build script --- exporter/scripts/build | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/exporter/scripts/build b/exporter/scripts/build index 7ad0aecf52..31b28f2347 100755 --- a/exporter/scripts/build +++ b/exporter/scripts/build @@ -3,12 +3,13 @@ set -ex export CURRENT_VERSION=$1; - -yarn install -rm -rf target - export NODE_ENV=production; +corepack enable; +corepack up || exit 1; +yarn install || exit 1; +rm -rf target + # Build the application clojure -M:dev:shadow-cljs release main;