mirror of
https://github.com/daylinmorgan/viv.git
synced 2024-11-12 12:13:15 -06:00
chore: change makefile style
This commit is contained in:
parent
a015592fb0
commit
f2c156daf6
2 changed files with 2 additions and 3 deletions
|
@ -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}
|
||||
|
||||
|
|
3
Makefile
3
Makefile
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue