From 1e3c127d4a938643aca1bbc25e6581493e316476 Mon Sep 17 00:00:00 2001 From: Pradyun Gedam Date: Sat, 9 Oct 2021 09:41:04 +0100 Subject: [PATCH] Avoid passing `.` to vendoring --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 910e61eb51b..df42af8b8f5 100644 --- a/noxfile.py +++ b/noxfile.py @@ -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]]: