Skip to content

Commit 1ed45b7

Browse files
authored
docs: Hardcode docs github url (#1328)
Signed-off-by: Charlie Truong <[email protected]>
1 parent 52cd68d commit 1ed45b7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/conf.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,9 @@ def _get_github_source_url(repo: git.Repo) -> str:
191191
def apply(self, **kwargs: Any) -> None: # type: ignore[bad-override]
192192
try:
193193
local_repo = git.Repo(search_parent_directories=True)
194-
remote_repo_url = self._get_github_source_url(local_repo)
194+
# Hardcode github url for now due to errors when building in a different environment
195+
# remote_repo_url = self._get_github_source_url(local_repo)
196+
remote_repo_url = "https://github.com/NVIDIA-NeMo/RL"
195197
except Exception:
196198
# Cannot figure out which source url it should be; leave links as-is.
197199
return

0 commit comments

Comments
 (0)