diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-07-08 11:39:52 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-08 11:39:52 +0000 |
commit | 6acc4cd7e1bc49904895e7e195dc84df77dc9abe (patch) | |
tree | a58cf1419f724321bfbf4559d367f4bd8a8fe372 /modules/launch_utils.py | |
parent | b25925c95ba71552bfc53220035160b6703be7da (diff) | |
parent | 0416a7bfbaecab20a4ae4cd8330faee556bb3d89 (diff) | |
download | stable-diffusion-webui-gfx803-6acc4cd7e1bc49904895e7e195dc84df77dc9abe.tar.gz stable-diffusion-webui-gfx803-6acc4cd7e1bc49904895e7e195dc84df77dc9abe.tar.bz2 stable-diffusion-webui-gfx803-6acc4cd7e1bc49904895e7e195dc84df77dc9abe.zip |
Merge pull request #11513 from Akegarasu/dev
fix can't get current hash
Diffstat (limited to 'modules/launch_utils.py')
-rw-r--r-- | modules/launch_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/launch_utils.py b/modules/launch_utils.py index 97539e68..0e0dbca4 100644 --- a/modules/launch_utils.py +++ b/modules/launch_utils.py @@ -142,7 +142,7 @@ def git_clone(url, dir, name, commithash=None): if commithash is None:
return
- current_hash = run(f'"{git}" -C "{dir}" rev-parse HEAD', None, f"Couldn't determine {name}'s hash: {commithash}").strip()
+ current_hash = run(f'"{git}" -C "{dir}" rev-parse HEAD', None, f"Couldn't determine {name}'s hash: {commithash}", live=False).strip()
if current_hash == commithash:
return
|