0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-18 10:41:29 -05:00

🐛 Properly include emails on the bundle.

This commit is contained in:
Andrey Antukh 2020-11-11 13:52:31 +01:00
parent ef01caf829
commit b22b77a39e

View file

@ -1,7 +1,7 @@
#!/usr/bin/env bash
CLASSPATH=`(clojure -Spath)`
NEWCP="./resources:./main:./common"
NEWCP="./main:./common"
rm -rf ./target/dist
mkdir -p ./target/dist/deps
@ -16,6 +16,7 @@ done
cp ./resources/log4j2-bundle.xml ./target/dist/log4j2.xml
cp -r ./src ./target/dist/main
cp -r ./resources/emails ./target/dist/main/
cp -r ../common ./target/dist/common
echo $NEWCP > ./target/dist/classpath;