0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-21 22:36:12 -05:00

🐛 Fix exporter build script

This commit is contained in:
Andrey Antukh 2025-02-10 11:40:14 +01:00
parent 6ca1a84557
commit ccce3bcb8f

View file

@ -3,12 +3,13 @@
set -ex set -ex
export CURRENT_VERSION=$1; export CURRENT_VERSION=$1;
yarn install
rm -rf target
export NODE_ENV=production; export NODE_ENV=production;
corepack enable;
corepack up || exit 1;
yarn install || exit 1;
rm -rf target
# Build the application # Build the application
clojure -M:dev:shadow-cljs release main; clojure -M:dev:shadow-cljs release main;