diff options
author | Dan <dansonlinepresence@gmail.com> | 2023-08-19 00:57:11 +0000 |
---|---|---|
committer | Dan <dansonlinepresence@gmail.com> | 2023-08-19 01:09:27 +0000 |
commit | 453a5ac1d0ad93ee16489854cebda49b7d2ebbf3 (patch) | |
tree | b1ca583e86f8dd4f92e64d5ab2488784945145ab | |
parent | 541ef9247cfe8785c12f7142ad02cd5310fc5925 (diff) | |
download | stable-diffusion-webui-gfx803-453a5ac1d0ad93ee16489854cebda49b7d2ebbf3.tar.gz stable-diffusion-webui-gfx803-453a5ac1d0ad93ee16489854cebda49b7d2ebbf3.tar.bz2 stable-diffusion-webui-gfx803-453a5ac1d0ad93ee16489854cebda49b7d2ebbf3.zip |
run python unbuffered so output shows up in docker logs
-rwxr-xr-x | webui.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -245,7 +245,7 @@ while [[ "$KEEP_GOING" -eq "1" ]]; do printf "Launching launch.py..." printf "\n%s\n" "${delimiter}" prepare_tcmalloc - "${python_cmd}" "${LAUNCH_SCRIPT}" "$@" + "${python_cmd}" -u "${LAUNCH_SCRIPT}" "$@" fi if [[ ! -f tmp/restart ]]; then |