diff options
author | Akiba <akiba@anzu.link> | 2023-06-29 10:46:52 +0000 |
---|---|---|
committer | Akiba <akiba@anzu.link> | 2023-06-29 10:46:52 +0000 |
commit | 0416a7bfbaecab20a4ae4cd8330faee556bb3d89 (patch) | |
tree | f4b5584c54929ec724fe1d2a0f54f07ec37d7603 /modules/launch_utils.py | |
parent | fab73f2e7d388ca99cdb3d5de7f36c0b9a1a3b1c (diff) | |
download | stable-diffusion-webui-gfx803-0416a7bfbaecab20a4ae4cd8330faee556bb3d89.tar.gz stable-diffusion-webui-gfx803-0416a7bfbaecab20a4ae4cd8330faee556bb3d89.tar.bz2 stable-diffusion-webui-gfx803-0416a7bfbaecab20a4ae4cd8330faee556bb3d89.zip |
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
|