diff options
-rw-r--r-- | webui-user.sh | 2 | ||||
-rwxr-xr-x | webui.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/webui-user.sh b/webui-user.sh index bfa53cb7..74e8800c 100644 --- a/webui-user.sh +++ b/webui-user.sh @@ -4,7 +4,7 @@ ######################################################### # Install directory without trailing slash -#install_dir="/home/$(whoami)" +#install_dir="$(pwd)" # Name of the subdirectory #clone_dir="stable-diffusion-webui" @@ -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) |