aboutsummaryrefslogtreecommitdiff
path: root/webui.sh
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2023-01-05 10:12:25 +0300
committerGitHub <noreply@github.com>2023-01-05 10:12:25 +0300
commitf3df26150883136c72d610f8d799f905a1465abf (patch)
tree675a15a71504f29265ee40f63ddb7a30e7d12356 /webui.sh
parent6745e8c5f2b01932a354c4977b4a9eaf488a224b (diff)
parent066390eb5683945a6e094a817584ada6b1f7118e (diff)
Merge pull request #6334 from jchook/exec
Fixes webui.sh to exec LAUNCH_SCRIPT
Diffstat (limited to 'webui.sh')
-rwxr-xr-xwebui.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/webui.sh b/webui.sh
index 04ecbf76..c4d6521d 100755
--- a/webui.sh
+++ b/webui.sh
@@ -160,10 +160,10 @@ then
printf "\n%s\n" "${delimiter}"
printf "Accelerating launch.py..."
printf "\n%s\n" "${delimiter}"
- accelerate launch --num_cpu_threads_per_process=6 "${LAUNCH_SCRIPT}" "$@"
+ exec accelerate launch --num_cpu_threads_per_process=6 "${LAUNCH_SCRIPT}" "$@"
else
printf "\n%s\n" "${delimiter}"
printf "Launching launch.py..."
printf "\n%s\n" "${delimiter}"
- "${python_cmd}" "${LAUNCH_SCRIPT}" "$@"
+ exec "${python_cmd}" "${LAUNCH_SCRIPT}" "$@"
fi