2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-22 01:22:00 +00:00

Fix makesetup for confluent_client

Fixing the redundant __init__.py led to no __init__.py, fix
that mistake.
This commit is contained in:
Jarrod Johnson 2018-04-10 16:11:14 -04:00
parent fc7b26eaf7
commit 39ee0da879

View File

@ -6,3 +6,6 @@ if [ "$NUMCOMMITS" != "$VERSION" ]; then
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