diff options
author | ParityError <36368048+ParityError@users.noreply.github.com> | 2023-03-12 22:08:26 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-12 22:08:26 +0000 |
commit | 6439e72df2cd2126734ce4a69c277502c4c9982d (patch) | |
tree | 553e1cfaff481286c85153e5a929c5ae21fc9ccc | |
parent | d78c4375833f063370fd40eab7b5322455c93683 (diff) | |
download | stable-diffusion-webui-gfx803-6439e72df2cd2126734ce4a69c277502c4c9982d.tar.gz stable-diffusion-webui-gfx803-6439e72df2cd2126734ce4a69c277502c4c9982d.tar.bz2 stable-diffusion-webui-gfx803-6439e72df2cd2126734ce4a69c277502c4c9982d.zip |
Update webui.sh
Installation should not be assumed to be located within ~/home directory. User should be expected to install project anywhere and run the startup scripts while in stable-diffusion-webui directory.
See issue #8534
-rwxr-xr-x | webui.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -23,7 +23,7 @@ fi # Install directory without trailing slash if [[ -z "${install_dir}" ]] then - install_dir="/home/$(whoami)" + install_dir="($pwd)" fi # Name of the subdirectory (defaults to stable-diffusion-webui) |