Skip to content

Commit

Permalink
fix #653: properly handle git tag creation
Browse files Browse the repository at this point in the history
  • Loading branch information
giampaolo committed Oct 23, 2024
1 parent f155ab7 commit 338fc37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ generate-manifest: ## Generates MANIFEST.in file.
$(PYTHON) scripts/internal/generate_manifest.py > MANIFEST.in

git-tag-release: ## Git-tag a new release.
git tag -a release-`python3 -c "import setup; print(setup.VERSION)"` -m `git rev-list HEAD --count`:`git rev-parse --short HEAD`
git tag -a release-`$(PYTHON) -c "import pyftpdlib; print(pyftpdlib.__ver__)"` -m `git rev-list HEAD --count`:`git rev-parse --short HEAD`
git push --follow-tags

print-announce: ## Print announce of new release.
Expand Down

0 comments on commit 338fc37

Please sign in to comment.