Avoid passing `.` to vendoring

This commit is contained in:
Pradyun Gedam 2021-10-09 09:41:04 +01:00
parent 610424f9f8
commit 1e3c127d4a
No known key found for this signature in database
GPG Key ID: FF99710C4332258E
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ def vendoring(session: nox.Session) -> None:
session.install("vendoring~=1.0.0")
if "--upgrade" not in session.posargs:
session.run("vendoring", "sync", ".", "-v")
session.run("vendoring", "sync", "-v")
return
def pinned_requirements(path: Path) -> Iterator[Tuple[str, str]]: