diff options
author | timntorres <timothynarcisotorres@gmail.com> | 2022-10-29 21:55:30 +0000 |
---|---|---|
committer | timntorres <timothynarcisotorres@gmail.com> | 2022-10-29 21:55:30 +0000 |
commit | e709afb0f774dde34a0a0f8d972a7bd2fd0f023a (patch) | |
tree | c222a84c2e92d245e2a8c736f14740d94cfae380 /webui.sh | |
parent | 2c4d20388425a5e40b93eef3722e42e8d375fbb4 (diff) | |
parent | e7254746bbfbff45099db44a8d4d25dd6181877d (diff) | |
download | stable-diffusion-webui-gfx803-e709afb0f774dde34a0a0f8d972a7bd2fd0f023a.tar.gz stable-diffusion-webui-gfx803-e709afb0f774dde34a0a0f8d972a7bd2fd0f023a.tar.bz2 stable-diffusion-webui-gfx803-e709afb0f774dde34a0a0f8d972a7bd2fd0f023a.zip |
Merge commit 'e7254746bbfbff45099db44a8d4d25dd6181877d' into 3825-save-hypernet-strength-to-info
Diffstat (limited to 'webui.sh')
-rwxr-xr-x | webui.sh | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -102,15 +102,14 @@ then exit 1 fi -printf "\n%s\n" "${delimiter}" -printf "Clone or update stable-diffusion-webui" -printf "\n%s\n" "${delimiter}" cd "${install_dir}"/ || { printf "\e[1m\e[31mERROR: Can't cd to %s/, aborting...\e[0m" "${install_dir}"; exit 1; } if [[ -d "${clone_dir}" ]] then cd "${clone_dir}"/ || { printf "\e[1m\e[31mERROR: Can't cd to %s/%s/, aborting...\e[0m" "${install_dir}" "${clone_dir}"; exit 1; } - "${GIT}" pull else + printf "\n%s\n" "${delimiter}" + printf "Clone stable-diffusion-webui" + printf "\n%s\n" "${delimiter}" "${GIT}" clone https://github.com/AUTOMATIC1111/stable-diffusion-webui.git "${clone_dir}" cd "${clone_dir}"/ || { printf "\e[1m\e[31mERROR: Can't cd to %s/%s/, aborting...\e[0m" "${install_dir}" "${clone_dir}"; exit 1; } fi |