diff options
author | ChucklesTheBeard <ChucklesTheBeard@users.noreply.github.com> | 2022-10-13 20:45:02 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-10-14 18:26:54 +0000 |
commit | 9b75ab144f5fa3669166374dacd5ffc340984078 (patch) | |
tree | bb84a87f3b6081c835b8067d0b403aaf57d262ac | |
parent | 2f0e089c7c8e1ad7d2ad658971c6fdec9622e3ab (diff) | |
download | stable-diffusion-webui-gfx803-9b75ab144f5fa3669166374dacd5ffc340984078.tar.gz stable-diffusion-webui-gfx803-9b75ab144f5fa3669166374dacd5ffc340984078.tar.bz2 stable-diffusion-webui-gfx803-9b75ab144f5fa3669166374dacd5ffc340984078.zip |
fix typo
-rw-r--r-- | launch.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -76,7 +76,7 @@ def git_clone(url, dir, name, commithash=None): return
run(f'"{git}" -C {dir} fetch', f"Fetching updates for {name}...", f"Couldn't fetch {name}")
- run(f'"{git}" -C {dir} checkout {commithash}', f"Checking out commint for {name} with hash: {commithash}...", f"Couldn't checkout commit {commithash} for {name}")
+ run(f'"{git}" -C {dir} checkout {commithash}', f"Checking out commit for {name} with hash: {commithash}...", f"Couldn't checkout commit {commithash} for {name}")
return
run(f'"{git}" clone "{url}" "{dir}"', f"Cloning {name} into {dir}...", f"Couldn't clone {name}")
|