This commit is contained in:
Erick Friis
2023-10-26 15:29:49 -07:00
committed by GitHub
parent 237026c060
commit 03e79e62c2
3 changed files with 4 additions and 6 deletions

View File

@@ -69,7 +69,7 @@ def parse_dependency_string(package_string: str) -> DependencySource:
# it's a default git repo dependency
subdirectory = str(Path(DEFAULT_GIT_SUBDIRECTORY) / package_string)
return DependencySource(
git=gitstring, ref=DEFAULT_GIT_REF, subdirectory=subdirectory
git=DEFAULT_GIT_REPO, ref=DEFAULT_GIT_REF, subdirectory=subdirectory
)