summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorsilverwind <me@silverwind.io>2023-11-06 01:11:34 +0100
committerGitHub <noreply@github.com>2023-11-06 00:11:34 +0000
commit1ccdb546f06f40d797f312b8f21c45f8ed8d25a1 (patch)
treee5fd3430c90f9bccd12ebacbdc095df7c030f608 /Makefile
parent37a7c551d46de8cd2a44c8a16ee251ce23af0da8 (diff)
downloadgitea-1ccdb546f06f40d797f312b8f21c45f8ed8d25a1.tar.gz
gitea-1ccdb546f06f40d797f312b8f21c45f8ed8d25a1.zip
Install poetry dependencies with --no-root (#27919)
Poetry 1.7.0 or higher will print a warning otherwise, see discussions: https://github.com/python-poetry/poetry/pull/8369 https://github.com/python-poetry/poetry/issues/1132 > --no-root Do not install the root package (the current project).
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c38e88a8e0..68d8238794 100644
--- a/Makefile
+++ b/Makefile
@@ -875,7 +875,7 @@ node_modules: package-lock.json
@touch node_modules
.venv: poetry.lock
- poetry install
+ poetry install --no-root
@touch .venv
.PHONY: update