diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-04-29 09:53:11 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-29 09:53:11 +0000 |
commit | 1dc21d79509cd1437f4bf150872fefdeeaf54ab8 (patch) | |
tree | d68d67684a654d9669b576df55da208c9072bc7a | |
parent | b06205eaf6fc8cb98c317ca6f82bb048a5034f72 (diff) | |
parent | 152ed34ccc603c77703ae3bcb3d570a32a8cc7d9 (diff) | |
download | stable-diffusion-webui-gfx803-1dc21d79509cd1437f4bf150872fefdeeaf54ab8.tar.gz stable-diffusion-webui-gfx803-1dc21d79509cd1437f4bf150872fefdeeaf54ab8.tar.bz2 stable-diffusion-webui-gfx803-1dc21d79509cd1437f4bf150872fefdeeaf54ab8.zip |
Merge pull request #9677 from weidongkl/master
fix install_dir error
-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="${HOME}" fi # Name of the subdirectory (defaults to stable-diffusion-webui) |