Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeanon committed Sep 16, 2024
1 parent 22274e1 commit 704adc6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion moonraker/components/update_manager/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"managed_services": "moonraker"
},
"klipper": {
"origin": "https://github.com/LynxCrew/klipper.git",
"origin": "https://github.com/LynxCrew/danger-klipper.git",
"requirements": "scripts/klippy-requirements.txt",
"venv_args": "-p python3",
"install_script": "scripts/install-octopi.sh",
Expand Down
2 changes: 1 addition & 1 deletion moonraker/components/update_manager/git_deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,7 @@ def _check_warnings(self) -> None:
if upstream_url[-4:] != ".git":
upstream_url += ".git"
if upstream_url != self.origin_url.lower():
self.repo_anomalies.append(f"Unofficial remote url: {self.upstream_url}")
self.repo_anomalies.append(f"Unofficial remote url: {self.upstream_url}, expected: {self.origin_url}")

Check warning on line 719 in moonraker/components/update_manager/git_deploy.py

View workflow job for this annotation

GitHub Actions / lint-python-code

line too long (114 > 88 characters)
if self.git_branch != self.primary_branch or self.git_remote != "origin":
self.repo_anomalies.append(
"Repo not on offical remote/branch, expected: "
Expand Down

0 comments on commit 704adc6

Please sign in to comment.