diff options
author | random-thoughtss <116161560+random-thoughtss@users.noreply.github.com> | 2022-10-30 07:30:18 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-30 07:30:18 +0000 |
commit | 15468c993974ed30fb204792c9598dfa62088bbb (patch) | |
tree | 313bbeb9d55c752cacfaa08b769c873c3566ebaf /webui.sh | |
parent | 39f55c3c35873bc7dd9792cb2155746a1c3d4292 (diff) | |
parent | 17a2076f72562b428052ee3fc8c43d19c03ecd1e (diff) | |
download | stable-diffusion-webui-gfx803-15468c993974ed30fb204792c9598dfa62088bbb.tar.gz stable-diffusion-webui-gfx803-15468c993974ed30fb204792c9598dfa62088bbb.tar.bz2 stable-diffusion-webui-gfx803-15468c993974ed30fb204792c9598dfa62088bbb.zip |
Merge branch 'AUTOMATIC1111:master' into 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 |