We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c3a601 commit 6dd1e61Copy full SHA for 6dd1e61
1 file changed
github_scripts/rose_stem_extract_source.py
@@ -39,7 +39,7 @@ def main() -> None:
39
40
dependencies: Dict = literal_eval(os.environ["DEPENDENCIES"])
41
42
- if os.environ.get("USE_TOKENS", False):
+ if bool(os.environ.get("USE_TOKENS", False)):
43
dependencies = set_https(dependencies)
44
45
for dependency, values in dependencies.items():
@@ -52,6 +52,8 @@ def main() -> None:
52
loc = clone_loc / dependency
53
54
if ".git" in values["source"]:
55
+ print(os.environ.get("USE_MIRRORS", False))
56
+ print(type(os.environ.get("USE_MIRRORS", False)))
57
if os.environ.get("USE_MIRRORS", False):
58
mirror_loc = Path(os.environ["GIT_MIRROR_LOC"]) / values["parent"]
59
clone_repo_mirror(
0 commit comments