refactor: rearrange input parameters for git_clone_wrapper

Signed-off-by: Dominik Willner <th33xitus@gmail.com>
This commit is contained in:
dw-0
2024-05-02 19:11:34 +02:00
parent 6407664e3e
commit 4a5d1a971a
7 changed files with 10 additions and 8 deletions

View File

@@ -132,7 +132,7 @@ def setup_moonraker_prerequesites() -> None:
repo = settings.get("moonraker", "repo_url")
branch = settings.get("moonraker", "branch")
git_clone_wrapper(repo, branch, MOONRAKER_DIR)
git_clone_wrapper(repo, MOONRAKER_DIR, branch)
# install moonraker dependencies and create python virtualenv
install_moonraker_packages(MOONRAKER_DIR)