aboutsummaryrefslogtreecommitdiffstats
path: root/launch.py
diff options
context:
space:
mode:
authorChucklesTheBeard <ChucklesTheBeard@users.noreply.github.com>2022-10-13 20:45:02 +0000
committerAUTOMATIC1111 <16777216c@gmail.com>2022-10-14 18:26:54 +0000
commit9b75ab144f5fa3669166374dacd5ffc340984078 (patch)
treebb84a87f3b6081c835b8067d0b403aaf57d262ac /launch.py
parent2f0e089c7c8e1ad7d2ad658971c6fdec9622e3ab (diff)
downloadstable-diffusion-webui-gfx803-9b75ab144f5fa3669166374dacd5ffc340984078.tar.gz
stable-diffusion-webui-gfx803-9b75ab144f5fa3669166374dacd5ffc340984078.tar.bz2
stable-diffusion-webui-gfx803-9b75ab144f5fa3669166374dacd5ffc340984078.zip
fix typo
Diffstat (limited to 'launch.py')
-rw-r--r--launch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/launch.py b/launch.py
index 16627a03..a7c5807b 100644
--- a/launch.py
+++ b/launch.py
@@ -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}")