From d921f803221fab09687af934873c89f7a4b94633 Mon Sep 17 00:00:00 2001 From: oobabooga <112222186+oobabooga@users.noreply.github.com> Date: Sun, 28 Jan 2024 06:14:15 -0800 Subject: [PATCH] one-click: minor fix after 5e87678fead985ad88c3a00d0b833067fb3bcb60 --- one_click.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/one_click.py b/one_click.py index ad300877..a3e29e08 100644 --- a/one_click.py +++ b/one_click.py @@ -268,7 +268,7 @@ def update_requirements(initial_installation=False): ] before_pull_hashes = {file_name: calculate_file_hash(file_name) for file_name in files_to_check} - run_cmd("git pull --autostash origin main", assert_success=True, environment=True) + run_cmd("git pull --autostash", assert_success=True, environment=True) after_pull_hashes = {file_name: calculate_file_hash(file_name) for file_name in files_to_check} # Check for differences in installation file hashes