From 5ea34f66ec5f8cd208bcceb01e2db987f73f64b0 Mon Sep 17 00:00:00 2001 From: Zlatko Knezevic Date: Tue, 23 Feb 2016 11:31:10 -0800 Subject: [PATCH] Fixing the name of the OS X package There was a bug in naming the versioned PKG for OSX when it is being packaged. This resulted in two different names for the latest and versioned, which is not what we want. Fix #1537 --- packaging/osx/package-osx.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/osx/package-osx.sh b/packaging/osx/package-osx.sh index caebef802..2951e6018 100755 --- a/packaging/osx/package-osx.sh +++ b/packaging/osx/package-osx.sh @@ -28,7 +28,7 @@ fi PACKAGE_DIR=$REPOROOT/artifacts/packages/pkg [ -d "$PACKAGE_DIR" ] || mkdir -p $PACKAGE_DIR -PACKAGE_NAME=$PACKAGE_DIR/dotnet-cli-x64.${DOTNET_CLI_VERSION}.pkg +PACKAGE_NAME=$PACKAGE_DIR/dotnet-osx-x64.${DOTNET_CLI_VERSION}.pkg #chmod -R 755 $STAGE2_DIR pkgbuild --root $STAGE2_DIR \ --version $DOTNET_CLI_VERSION \