File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ set -euxo pipefail
33
44echo " Building cryptomator cli..."
55
6- APP_VERSION=' 0.1.0-local'
6+ export APP_VERSION=' 0.1.0-local'
77
88# Check if Maven is installed
99if ! command -v mvn & > /dev/null; then
@@ -39,7 +39,7 @@ if [ $? -ne 0 ] || [ ! -d ./target/runtime ]; then
3939 exit 1
4040fi
4141
42- NATIVE_ACCESS_PACKAGE=" no.native.access.available"
42+ export NATIVE_ACCESS_PACKAGE=" no.native.access.available"
4343_OS=$( uname -s)
4444if (echo " $_OS " | grep -q " Linux.*" ) ; then
4545 _ARCH=$( uname -m)
@@ -53,7 +53,7 @@ if (echo "$_OS" | grep -q "Linux.*") ; then
5353 fi
5454fi
5555
56- JP_APP_VERSION=' 99.9.9'
56+ export JP_APP_VERSION=' 99.9.9'
5757envsubst < dist/jpackage.args > target/jpackage.args
5858
5959echo " Creating app binary with jpackage..."
Original file line number Diff line number Diff line change 22
33echo " Building cryptomator cli..."
44
5- APP_VERSION=' 0.1.0-local'
5+ export APP_VERSION=' 0.1.0-local'
66
77# Check if Maven is installed
88if ! command -v mvn & > /dev/null; then
@@ -38,7 +38,8 @@ if [ $? -ne 0 ] || [ ! -d ./target/runtime ]; then
3838 exit 1
3939fi
4040
41- JP_APP_VERSION=' 99.9.9'
41+ export JP_APP_VERSION=' 99.9.9'
42+ export NATIVE_ACCESS_PACKAGE=" org.cryptomator.jfuse.mac"
4243envsubst < dist/jpackage.args > target/jpackage.args
4344
4445echo " Creating app binary with jpackage..."
You can’t perform that action at this time.
0 commit comments