From 8a2dd84340314c5818e403c288906b512d078258 Mon Sep 17 00:00:00 2001 From: Sridhar Periyasamy Date: Wed, 28 Oct 2015 16:02:14 -0700 Subject: [PATCH] Fix to get the correct UTC date on OSX --- build.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index f94d39b9f..bbb32ed3b 100755 --- a/build.sh +++ b/build.sh @@ -14,7 +14,14 @@ DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )" # UTC Timestamp of the last commit is used as the build number. This is for easy synchronization of build number between Windows, OSX and Linux builds. LAST_COMMIT_TIMESTAMP=$(git log -1 --format=%ct) -export DOTNET_BUILD_VERSION=0.0.1-alpha-$(date -ud @$LAST_COMMIT_TIMESTAMP "+%Y%m%d-%H%M%S") + +if [ "$UNAME" == "Darwin" ]; then + export DOTNET_BUILD_VERSION=0.0.1-alpha-$(date -ur $LAST_COMMIT_TIMESTAMP "+%Y%m%d-%H%M%S") +else + export DOTNET_BUILD_VERSION=0.0.1-alpha-$(date -ud @$LAST_COMMIT_TIMESTAMP "+%Y%m%d-%H%M%S") +fi + +echo Building dotnet tools verison - $DOTNET_BUILD_VERSION $DIR/scripts/bootstrap.sh $DIR/scripts/package.sh $1