Changeset 18879 in josm for trunk/native/macosx
- Timestamp:
- 2023-10-25T15:23:52+02:00 (18 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/native/macosx/macos-jpackage.sh
r18878 r18879 25 25 mkdir app 26 26 27 if [ -z "$CERT_MACOS_P12" ] || [ -z "$CERT_MACOS_PW" ] || [ -z "$APPLE_ID_PW" ] 27 if [ -z "$CERT_MACOS_P12" ] || [ -z "$CERT_MACOS_PW" ] || [ -z "$APPLE_ID_PW" ] || [ -z "$APPLE_ID_TEAM" ] 28 28 then 29 echo "CERT_MACOS_P12, CERT_MACOS_PW andAPPLE_ID_PW are not set in the environment."29 echo "CERT_MACOS_P12, CERT_MACOS_PW, APPLE_ID_PW, or APPLE_ID_TEAM are not set in the environment." 30 30 echo "A JOSM.app will be created but not signed nor notarized." 31 31 SIGNAPP=false … … 55 55 56 56 echo "Building and signing app" 57 # We specifically need the options to not be quoted -- we _want_ the word splitting. 58 # shellcheck disable=SC2086 57 59 jpackage $JPACKAGEOPTIONS -n "JOSM" --input dist --main-jar josm-custom.jar \ 58 60 --main-class org.openstreetmap.josm.gui.MainApplication \
Note:
See TracChangeset
for help on using the changeset viewer.