mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-22 01:22:00 +00:00
cb67c83287
We may not know where we are going, but at least bump the minor number. Ultimately we may not be building toward that number, or that number will be used in a different branch, but it can at least handle more cases
17 lines
568 B
Plaintext
Executable File
17 lines
568 B
Plaintext
Executable File
cd `dirname $0`
|
|
VERSION=`git describe|cut -d- -f 1`
|
|
NUMCOMMITS=`git describe|cut -d- -f 2`
|
|
if [ "$NUMCOMMITS" != "$VERSION" ]; then
|
|
LASTNUM=$(echo $VERSION|rev|cut -d . -f 1|rev)
|
|
LASTNUM=$((LASTNUM+1))
|
|
FIRSTPART=$(echo $VERSION|rev|cut -d . -f 2- |rev)
|
|
VERSION=${FIRSTPART}.${LASTNUM}
|
|
VERSION=$VERSION~dev$NUMCOMMITS+g`git describe|cut -d- -f 3`
|
|
fi
|
|
echo $VERSION > VERSION
|
|
sed -e "s/#VERSION#/$VERSION/" setup.py.tmpl > setup.py
|
|
if [ -f confluent/client.py ]; then
|
|
echo '__version__ = "'$VERSION'"' > confluent/__init__.py
|
|
fi
|
|
cp ../LICENSE .
|