1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pyinventory_ynh.git synced 2024-09-03 20:16:09 +02:00

cleanup Makefile

This commit is contained in:
JensDiemer 2020-12-29 12:52:44 +01:00
parent 465bf8b8eb
commit cca6eef925

View file

@ -18,12 +18,12 @@ check-poetry:
install-poetry: ## install or update poetry install-poetry: ## install or update poetry
pip3 install -U pip pip3 install -U pip
pip3 install -U poetry pip3 install -U poetry
poetry run pip install -U pip
install: check-poetry ## install project via poetry install: check-poetry ## install project via poetry
poetry install poetry install
update: install-poetry ## update the sources and installation update: install-poetry ## update the sources and installation and generate "conf/requirements.txt"
poetry run pip install -U pip
poetry update poetry update
poetry export -f requirements.txt --output conf/requirements.txt poetry export -f requirements.txt --output conf/requirements.txt