mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-26 19:40:12 +00:00
Merge pull request #43 from jjohnson42/master
Change to versioning derivation from git data
This commit is contained in:
commit
597bc9413f
@ -1 +0,0 @@
|
||||
1.2
|
@ -1 +0,0 @@
|
||||
1.2
|
@ -1,3 +1,8 @@
|
||||
cd `dirname $0`
|
||||
VERSION=`cat VERSION`
|
||||
VERSION=`git tag -l|tail -n 1`
|
||||
NUMCOMMITS=`git rev-list $VERSION..HEAD|wc -l`
|
||||
if [ "$NUMCOMMITS" -ne 0 ]; then
|
||||
VERSION=$VERSION.dev$NUMCOMMITS.g`git rev-parse --short HEAD`
|
||||
fi
|
||||
echo $VERSION > VERSION
|
||||
sed -e "s/#VERSION#/$VERSION/" setup.py.tmpl > setup.py
|
||||
|
Loading…
Reference in New Issue
Block a user