diff options
author | ParityError <36368048+ParityError@users.noreply.github.com> | 2023-03-12 22:10:44 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-12 22:10:44 +0000 |
commit | 5c051c0618bec1417827910b601ba915d0ca6c4e (patch) | |
tree | 9771bb7ce7401a8c4b487b349c45b55f3ee67429 | |
parent | 6439e72df2cd2126734ce4a69c277502c4c9982d (diff) | |
download | stable-diffusion-webui-gfx803-5c051c0618bec1417827910b601ba915d0ca6c4e.tar.gz stable-diffusion-webui-gfx803-5c051c0618bec1417827910b601ba915d0ca6c4e.tar.bz2 stable-diffusion-webui-gfx803-5c051c0618bec1417827910b601ba915d0ca6c4e.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="($pwd)" + install_dir="$(pwd)" fi # Name of the subdirectory (defaults to stable-diffusion-webui) |