scylla-jmx/SCYLLA-VERSION-GEN
Shlomi Livne 29b3c6ee62 release: prepare for 2.1.3
Signed-off-by: Shlomi Livne <shlomi@scylladb.com>
2018-05-01 22:15:31 +03:00

20 lines
457 B
Bash
Executable File

#!/bin/sh
VERSION=2.1.3
if test -f version
then
SCYLLA_VERSION=$(cat version | awk -F'-' '{print $1}')
SCYLLA_RELEASE=$(cat version | awk -F'-' '{print $2}')
else
DATE=$(date +%Y%m%d)
GIT_COMMIT=$(git log --pretty=format:'%h' -n 1)
SCYLLA_VERSION=$VERSION
SCYLLA_RELEASE=$DATE.$GIT_COMMIT
fi
echo "$SCYLLA_VERSION-$SCYLLA_RELEASE"
mkdir -p build
echo "$SCYLLA_VERSION" > build/SCYLLA-VERSION-FILE
echo "$SCYLLA_RELEASE" > build/SCYLLA-RELEASE-FILE