diff options
| author | AUTOMATIC1111 <16777216c@gmail.com> | 2022-10-29 23:04:26 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-29 23:04:26 +0300 |
| commit | e7254746bbfbff45099db44a8d4d25dd6181877d (patch) | |
| tree | 12d4290df1c38de392ef2ad95362135fb2d7fc3c | |
| parent | d699720254365069866eafcdc519743664075a6d (diff) | |
| parent | 6515dedf57db6a46c7a85b0b7a1eee0daad90123 (diff) | |
| download | stable-diffusion-webui-gfx803-e7254746bbfbff45099db44a8d4d25dd6181877d.tar.gz | |
Merge pull request #3571 from szhublox/noautoupdate
webui.sh: no automatic git pull
| -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 |
