diff options
author | silverwind <me@silverwind.io> | 2023-11-06 16:44:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-06 15:44:04 +0000 |
commit | 0999721c7b4d124c1f14bbd067acdcf767542abb (patch) | |
tree | 5c2e2bbe7dbf130d2ad15d59788519a2367591a4 | |
parent | 1e25c15d9856ed31d94c82c6df688d1352fa01e7 (diff) | |
download | gitea-0999721c7b4d124c1f14bbd067acdcf767542abb.tar.gz gitea-0999721c7b4d124c1f14bbd067acdcf767542abb.zip |
Add `--no-root` to `update-py` (#27937)
Missed this command in https://github.com/go-gitea/gitea/pull/27919.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -892,7 +892,7 @@ update-js: node-check | node_modules update-py: node-check | node_modules npx updates -u -f pyproject.toml rm -rf .venv poetry.lock - poetry install + poetry install --no-root @touch .venv .PHONY: fomantic |