From dc2dd5b9d897beb8553a9ab874122ed5675247c0 Mon Sep 17 00:00:00 2001 From: oobabooga <112222186+oobabooga@users.noreply.github.com> Date: Mon, 4 Mar 2024 08:00:39 -0800 Subject: [PATCH] One-click installer: add an info message before git pull --- one_click.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/one_click.py b/one_click.py index 106e86d9..8af9482d 100644 --- a/one_click.py +++ b/one_click.py @@ -316,6 +316,8 @@ def update_requirements(initial_installation=False): 'one_click.py' ] + print_big_message("Updating the local copy of the repository with \"git pull\"") + before_pull_hashes = {file_name: calculate_file_hash(file_name) for file_name in files_to_check} 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}