Skip to content

Commit 6592b34

Browse files
author
Tim Mühle
committed
Relaese 1.0.3
- Fixed a bug that causes wrong conversions when the user types a leading plus sign - Minor Unicode fixes
1 parent 4eef88d commit 6592b34

File tree

4 files changed

+24
-24
lines changed

4 files changed

+24
-24
lines changed

build_installer_mac.command

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,18 +43,18 @@ do
4343
echo "${NAME-$VERSION}.${TYPE} wird erstellt"
4444
echo ""
4545

46-
/Library/Java/jdk-14.jdk/Contents/Home/bin/jpackage \
47-
--type $TYPE \
46+
jpackage \
47+
--type "${TYPE}" \
4848
--name "${NAME}" \
4949
--description "${DESCRIPTION}" \
5050
--vendor "${VENDOR}" \
51-
--app-version $VERSION \
52-
--input $INPUT/jpackage \
53-
--dest $OUT \
51+
--app-version "${VERSION}" \
52+
--input "${INPUT}/jpackage" \
53+
--dest "${OUT}" \
5454
--main-jar "${MAIN_JAR}" \
5555
--mac-package-name "${NAME}" \
5656
--license-file "${LICENSE_FILE}" \
57-
--icon ./Logo/$NAME.icns
57+
--icon "./Logo/${NAME}.icns"
5858

5959
echo ""
6060
mv "./${OUT}/${NAME}-${VERSION}.${TYPE}" "./${OUT}/${NAME}-${VERSION}-mac-install.${TYPE}"

build_mvn_and_installer_linux.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -67,18 +67,18 @@ do
6767
echo "${NAME-$VERSION}.${TYPE} wird erstellt"
6868
echo ""
6969

70-
/library/java/jdk-14.0.1/bin/jpackage \
71-
--type $TYPE \
70+
jpackage \
71+
--type "${TYPE}" \
7272
--name "${NAME}" \
7373
--description "${DESCRIPTION}" \
7474
--vendor "${VENDOR}" \
75-
--app-version $VERSION \
76-
--input $INPUT/jpackage \
77-
--dest $OUT \
75+
--app-version "${VERSION}" \
76+
--input "${INPUT}/jpackage" \
77+
--dest "${OUT}" \
7878
--main-jar "${MAIN_JAR}" \
7979
--linux-shortcut \
8080
--license-file "${LICENSE_FILE}" \
81-
--icon ./Logo/$NAME.png \
81+
--icon "./Logo/${NAME}.png" \
8282
--linux-rpm-license-type "MIT License"
8383

8484
echo ""

build_mvn_and_installer_linux_rpm.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -67,18 +67,18 @@ do
6767
echo "${NAME-$VERSION}.${TYPE} wird erstellt"
6868
echo ""
6969

70-
/library/java/jdk-14.0.1/bin/jpackage \
71-
--type $TYPE \
70+
jpackage \
71+
--type "${TYPE}" \
7272
--name "${NAME}" \
7373
--description "${DESCRIPTION}" \
7474
--vendor "${VENDOR}" \
75-
--app-version $VERSION \
76-
--input $INPUT/jpackage \
77-
--dest $OUT \
75+
--app-version "${VERSION}" \
76+
--input "${INPUT}/jpackage" \
77+
--dest "${OUT}" \
7878
--main-jar "${MAIN_JAR}" \
7979
--linux-shortcut \
8080
--license-file "${LICENSE_FILE}" \
81-
--icon ./Logo/$NAME.png \
81+
--icon "./Logo/${NAME}.png" \
8282
--linux-rpm-license-type "MIT License"
8383

8484
echo ""

build_mvn_and_installer_mac.command

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,18 +66,18 @@ do
6666
echo "${NAME-$VERSION}.${TYPE} wird erstellt"
6767
echo ""
6868

69-
/Library/Java/jdk-14.jdk/Contents/Home/bin/jpackage \
70-
--type $TYPE \
69+
jpackage \
70+
--type "${TYPE}" \
7171
--name "${NAME}" \
7272
--description "${DESCRIPTION}" \
7373
--vendor "${VENDOR}" \
74-
--app-version $VERSION \
75-
--input $INPUT/jpackage \
76-
--dest $OUT \
74+
--app-version "${VERSION}" \
75+
--input "${INPUT}/jpackage" \
76+
--dest "${OUT}" \
7777
--main-jar "${MAIN_JAR}" \
7878
--mac-package-name "${NAME}" \
7979
--license-file "${LICENSE_FILE}" \
80-
--icon ./Logo/$NAME.icns
80+
--icon "./Logo/${NAME}.icns"
8181

8282
echo ""
8383
mv "./${OUT}/${NAME}-${VERSION}.${TYPE}" "./${OUT}/${NAME}-${VERSION}-mac-install.${TYPE}"

0 commit comments

Comments
 (0)