Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVikas Chandra2019-12-13 06:04:42 +0000
committerVikas Chandra2019-12-13 06:06:24 +0000
commit1a164083e72b2328c53fadba3baf1f46f55b455b (patch)
tree1e2e40263aa0fff8783804e91956c8ce7f7dece4 /production
parentc7d994f0abf7288471446b6805c6a8316d991c2a (diff)
downloadeclipse.platform.releng.aggregator-1a164083e72b2328c53fadba3baf1f46f55b455b.tar.gz
eclipse.platform.releng.aggregator-1a164083e72b2328c53fadba3baf1f46f55b455b.tar.xz
eclipse.platform.releng.aggregator-1a164083e72b2328c53fadba3baf1f46f55b455b.zip
Bug 558071 - Starting with 4.14 RC1 equinox zip does not include version
Change-Id: I158b2567f5f6f37c6efb9c2126c5f5834755d6d7 Signed-off-by: Vikas Chandra <Vikas.Chandra@in.ibm.com>
Diffstat (limited to 'production')
-rwxr-xr-xproduction/build-functions.shsource4
1 files changed, 2 insertions, 2 deletions
diff --git a/production/build-functions.shsource b/production/build-functions.shsource
index 72e330ea5..6095b1856 100755
--- a/production/build-functions.shsource
+++ b/production/build-functions.shsource
@@ -681,10 +681,10 @@ fn-gather-repo ()
fn-notarize-macbuild ()
{
set -x
- BUILD_DIR="$1"; shift
+ BUILD_DIR_TEMP="$1"; shift
DMG="$1"; shift
- pushd $BUILD_DIR
+ pushd $BUILD_DIR_TEMP
PRIMARY_BUNDLE_ID="$(echo ${DMG} | sed 's/-macosx-cocoa-x86_64.dmg//g')"

Back to the top