Skip to content

Commit 1c5100c

Browse files
committed
fix 'make tag'
1 parent a240028 commit 1c5100c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ _install_e:
4141

4242
tag: _install_e ## Make a git tag with the version number.
4343
@export VER="$$(python -c "import django_coverage_plugin as me; print(me.__version__)")" && \
44-
echo git tag -s -m "Version v$$VER" v$$VER
45-
echo git push --all
44+
git tag -s -m "Version v$$VER" v$$VER
45+
git push --all
4646

4747
ghrelease: ## Make a GitHub release for the latest version.
4848
python -m scriv github-release

0 commit comments

Comments
 (0)