Skip to content

Commit

Permalink
python_deploy: fix github dev channel updates
Browse files Browse the repository at this point in the history
Signed-off-by:  Eric Callahan <[email protected]>
  • Loading branch information
Arksine committed Dec 22, 2024
1 parent ccfe32f commit a4604e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion moonraker/components/update_manager/python_deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ async def update(self, rollback: bool = False) -> bool:
pip_args = f"install -U git+https://github.com/{repo}"
if rollback:
pip_args += f"@{self.rollback_ref}"
elif self.channel == "dev":
elif self.channel == Channel.DEV:
current_ref = self.current_sha
if self.primary_branch is not None:
pip_args += f"@{self.primary_branch}"
Expand Down

0 comments on commit a4604e3

Please sign in to comment.