358e7387ea
Follows scylla-server. Message-Id: <1452774312-10210-1-git-send-email-avi@scylladb.com>
20 lines
467 B
Bash
Executable File
20 lines
467 B
Bash
Executable File
#!/bin/sh
|
|
|
|
VERSION=666.development
|
|
|
|
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
|