Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'production/build-functions.shsource')
-rwxr-xr-xproduction/build-functions.shsource10
1 files changed, 3 insertions, 7 deletions
diff --git a/production/build-functions.shsource b/production/build-functions.shsource
index 739d2e266..6e884cfd5 100755
--- a/production/build-functions.shsource
+++ b/production/build-functions.shsource
@@ -688,11 +688,7 @@ fn-notarize-macbuild ()
PRIMARY_BUNDLE_ID="$(echo ${DMG} | sed 's/-macosx-cocoa-x86_64.dmg//g')"
- RESPONSE=\
- $(curl -s -X POST \
- -F file=@${DMG} \
- -F 'options={"primaryBundleId": "'${PRIMARY_BUNDLE_ID}'", "staple": true};type=application/json' \
- http://172.30.206.146:8383/macos-notarization-service/notarize)
+ RESPONSE=$(curl -s -X POST -F file=@${DMG} -F 'options={"primaryBundleId": "'${PRIMARY_BUNDLE_ID}'", "staple": true};type=application/json' http://172.30.206.146:8383/macos-notarization-service/notarize)
UUID=$(echo ${RESPONSE} | /shared/common/jq/1.6/jq -r '.uuid')
@@ -738,7 +734,7 @@ fn-gather-sdk ()
cp org.eclipse.sdk.ide-macosx.cocoa.x86_64.dmg "$BUILD_DIR"/eclipse-SDK-${BUILD_ID}-macosx-cocoa-x86_64.dmg
cp org.eclipse.sdk.ide-win32.win32.x86_64.zip "$BUILD_DIR"/eclipse-SDK-${BUILD_ID}-win32-x86_64.zip
popd
-# fn-notarize-macbuild "$BUILD_DIR" eclipse-SDK-${BUILD_ID}-macosx-cocoa-x86_64.dmg
+ fn-notarize-macbuild "$BUILD_DIR" eclipse-SDK-${BUILD_ID}-macosx-cocoa-x86_64.dmg
else
echo " ERROR: $TARGET_PRODUCTS did not exist in fn-gather-sdks"
fi
@@ -775,7 +771,7 @@ fn-gather-platform ()
cp org.eclipse.platform.ide-macosx.cocoa.x86_64.dmg "$BUILD_DIR"/eclipse-platform-${BUILD_ID}-macosx-cocoa-x86_64.dmg
cp org.eclipse.platform.ide-win32.win32.x86_64.zip "$BUILD_DIR"/eclipse-platform-${BUILD_ID}-win32-x86_64.zip
popd
-# fn-notarize-macbuild "$BUILD_DIR" eclipse-platform-${BUILD_ID}-macosx-cocoa-x86_64.dmg
+ fn-notarize-macbuild "$BUILD_DIR" eclipse-platform-${BUILD_ID}-macosx-cocoa-x86_64.dmg
else
echo " ERROR: $TARGET_PRODUCTS did not exist in fn-gather-platform"
fi

Back to the top