Skip to content

Commit

Permalink
Fix setup.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
eddieantonio committed May 17, 2018
1 parent acf9844 commit 09b3833
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def finalize_options(self):
def run(self):
try:
self.status('Removing previous builds…')
rmtree(os.path.join(here, 'dist'))
rmtree(os.path.join(HERE, 'dist'))
except OSError:
pass

Expand All @@ -55,7 +55,7 @@ def run(self):
os.system('twine upload dist/*')

self.status('Pushing git tags…')
os.system('git tag v{0}'.format(about['__version__']))
os.system('git tag v{0}'.format(version()))
os.system('git push --tags')

sys.exit()
Expand Down

0 comments on commit 09b3833

Please sign in to comment.