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
3
3
4
4
echo " Building cryptomator cli..."
5
5
6
- APP_VERSION=' 0.1.0-local'
6
+ export APP_VERSION=' 0.1.0-local'
7
7
8
8
# Check if Maven is installed
9
9
if ! command -v mvn & > /dev/null; then
@@ -39,7 +39,7 @@ if [ $? -ne 0 ] || [ ! -d ./target/runtime ]; then
39
39
exit 1
40
40
fi
41
41
42
- NATIVE_ACCESS_PACKAGE=" no.native.access.available"
42
+ export NATIVE_ACCESS_PACKAGE=" no.native.access.available"
43
43
_OS=$( uname -s)
44
44
if (echo " $_OS " | grep -q " Linux.*" ) ; then
45
45
_ARCH=$( uname -m)
@@ -53,7 +53,7 @@ if (echo "$_OS" | grep -q "Linux.*") ; then
53
53
fi
54
54
fi
55
55
56
- JP_APP_VERSION=' 99.9.9'
56
+ export JP_APP_VERSION=' 99.9.9'
57
57
envsubst < dist/jpackage.args > target/jpackage.args
58
58
59
59
echo " Creating app binary with jpackage..."
Original file line number Diff line number Diff line change 2
2
3
3
echo " Building cryptomator cli..."
4
4
5
- APP_VERSION=' 0.1.0-local'
5
+ export APP_VERSION=' 0.1.0-local'
6
6
7
7
# Check if Maven is installed
8
8
if ! command -v mvn & > /dev/null; then
@@ -38,7 +38,8 @@ if [ $? -ne 0 ] || [ ! -d ./target/runtime ]; then
38
38
exit 1
39
39
fi
40
40
41
- JP_APP_VERSION=' 99.9.9'
41
+ export JP_APP_VERSION=' 99.9.9'
42
+ export NATIVE_ACCESS_PACKAGE=" org.cryptomator.jfuse.mac"
42
43
envsubst < dist/jpackage.args > target/jpackage.args
43
44
44
45
echo " Creating app binary with jpackage..."
You can’t perform that action at this time.
0 commit comments