mirror of
https://github.com/daylinmorgan/viv.git
synced 2024-11-14 04:57:53 -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
|
PHONIFY=1
|
||||||
HELP_SEP={a.b_blue}>>>{a.end}
|
HELP_SEP={a.b_blue}>>>{a.end}
|
||||||
|
|
||||||
|
|
3
Makefile
3
Makefile
|
@ -7,7 +7,7 @@ lint: ## run pre-commit hooks
|
||||||
types: ## run mypy
|
types: ## run mypy
|
||||||
mypy src/viv
|
mypy src/viv
|
||||||
|
|
||||||
bump-version: ## update version and tag commit
|
bump: check-version ## update version and tag commit
|
||||||
@echo "bumping to version => $(VERSION)"
|
@echo "bumping to version => $(VERSION)"
|
||||||
@sed -i 's/__version__ = ".*"/__version__ = "$(VERSION)"/g' src/viv/viv.py
|
@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
|
@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 -d latest || true
|
||||||
@git tag latest
|
@git tag latest
|
||||||
|
|
||||||
|
|
||||||
venv: ## generate environment
|
venv: ## generate environment
|
||||||
pdm install
|
pdm install
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue