chore: change makefile style

This commit is contained in:
Daylin Morgan 2023-05-29 12:44:00 -05:00
parent a015592fb0
commit f2c156daf6
Signed by: daylin
GPG key ID: C1E52E7DD81DF79F
2 changed files with 2 additions and 3 deletions

View file

@ -1,4 +1,4 @@
USAGE={a.bold}{a.cyan} viv isn't venv{a.end}\n\n\ttasks:\n
USAGE={a.bold}{a.cyan} viv tasks{a.end}:\n
PHONIFY=1
HELP_SEP={a.b_blue}>>>{a.end}

View file

@ -7,7 +7,7 @@ lint: ## run pre-commit hooks
types: ## run mypy
mypy src/viv
bump-version: ## update version and tag commit
bump: check-version ## update version and tag commit
@echo "bumping to version => $(VERSION)"
@sed -i 's/__version__ = ".*"/__version__ = "$(VERSION)"/g' src/viv/viv.py
@git add src/viv/viv.py && git commit -m "chore: bump version" --no-verify
@ -15,7 +15,6 @@ bump-version: ## update version and tag commit
@git tag -d latest || true
@git tag latest
venv: ## generate environment
pdm install