diff options
author | Roy Shilkrot <roy.shil@gmail.com> | 2022-10-31 15:45:52 +0000 |
---|---|---|
committer | Roy Shilkrot <roy.shil@gmail.com> | 2022-10-31 15:45:52 +0000 |
commit | 509fd1459bacfe0dcde1e5792ea3e046aa9f4d24 (patch) | |
tree | eaecb0351d6a95e4c29eaebdcb8b304990fd3a91 /webui.sh | |
parent | bdc90837987ed8919dd611fd01553b0c170ded5c (diff) | |
parent | dc7425a56e7a014cbfa3b3d44ad2321e519fe378 (diff) | |
download | stable-diffusion-webui-gfx803-509fd1459bacfe0dcde1e5792ea3e046aa9f4d24.tar.gz stable-diffusion-webui-gfx803-509fd1459bacfe0dcde1e5792ea3e046aa9f4d24.tar.bz2 stable-diffusion-webui-gfx803-509fd1459bacfe0dcde1e5792ea3e046aa9f4d24.zip |
Merge remote-tracking branch 'upstream/master' into roy.add_simple_interrogate_api
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 |