diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-13 17:15:20 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-13 17:15:20 +0000 |
commit | 16781ba09abe1494993f819b91ea0b88c48903b7 (patch) | |
tree | 1b5de6d8931a2c04b4e41dda55a544976557d780 /modules/launch_utils.py | |
parent | f093c9d39d0fe9951a8f5c570027cecc68778ef2 (diff) | |
download | stable-diffusion-webui-gfx803-16781ba09abe1494993f819b91ea0b88c48903b7.tar.gz stable-diffusion-webui-gfx803-16781ba09abe1494993f819b91ea0b88c48903b7.tar.bz2 stable-diffusion-webui-gfx803-16781ba09abe1494993f819b91ea0b88c48903b7.zip |
fix 2 for git code botched by previous PRs
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 4fc254a2..e77baa52 100644 --- a/modules/launch_utils.py +++ b/modules/launch_utils.py @@ -175,7 +175,7 @@ def git_clone(url, dir, name, commithash=None): run_git(dir, name, 'fetch', f"Fetching updates for {name}...", f"Couldn't fetch {name}", autofix=False)
- run_git(dir, name, 'checkout', f"Checking out commit for {name} with hash: {commithash}...", f"Couldn't checkout commit {commithash} for {name}", live=True)
+ run_git(dir, name, f'checkout {commithash}', f"Checking out commit for {name} with hash: {commithash}...", f"Couldn't checkout commit {commithash} for {name}", live=True)
return
|