diff options
author | Muhammad Rizqi Nur <rizqinur2010@gmail.com> | 2022-10-30 11:57:51 +0000 |
---|---|---|
committer | Muhammad Rizqi Nur <rizqinur2010@gmail.com> | 2022-10-30 11:57:51 +0000 |
commit | cd4d59c0de446e6cae1db99ab1ad902b375a1e10 (patch) | |
tree | 8a09cbfceef69ebe3a3dab513a158a642923ab0c /webui.sh | |
parent | 05e2e40537a948d7563d873ffbc394c41a0cd0b1 (diff) | |
parent | 17a2076f72562b428052ee3fc8c43d19c03ecd1e (diff) | |
download | stable-diffusion-webui-gfx803-cd4d59c0de446e6cae1db99ab1ad902b375a1e10.tar.gz stable-diffusion-webui-gfx803-cd4d59c0de446e6cae1db99ab1ad902b375a1e10.tar.bz2 stable-diffusion-webui-gfx803-cd4d59c0de446e6cae1db99ab1ad902b375a1e10.zip |
Merge master
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 |