From 39ee0da879918025673ecbbff0af414789c7051c Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Tue, 10 Apr 2018 16:11:14 -0400 Subject: [PATCH] Fix makesetup for confluent_client Fixing the redundant __init__.py led to no __init__.py, fix that mistake. --- confluent_server/makesetup | 3 +++ 1 file changed, 3 insertions(+) diff --git a/confluent_server/makesetup b/confluent_server/makesetup index 2ee30143..44e7293f 100755 --- a/confluent_server/makesetup +++ b/confluent_server/makesetup @@ -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