From c8fc0bb4f5760cc2575963b974befe2e7e9a708b Mon Sep 17 00:00:00 2001 From: cmdr2 Date: Wed, 26 Oct 2022 16:02:00 +0530 Subject: [PATCH] Remove the extra python version print --- scripts/on_sd_start.bat | 2 -- scripts/on_sd_start.sh | 2 -- 2 files changed, 4 deletions(-) diff --git a/scripts/on_sd_start.bat b/scripts/on_sd_start.bat index beddb33a..3b7ed0ca 100644 --- a/scripts/on_sd_start.bat +++ b/scripts/on_sd_start.bat @@ -343,8 +343,6 @@ call python --version @set SD_UI_PATH=%cd%\ui @cd stable-diffusion -@call python --version - @uvicorn server:app --app-dir "%SD_UI_PATH%" --port 9000 --host 0.0.0.0 @pause diff --git a/scripts/on_sd_start.sh b/scripts/on_sd_start.sh index 33d32aeb..4bf5d79a 100755 --- a/scripts/on_sd_start.sh +++ b/scripts/on_sd_start.sh @@ -318,8 +318,6 @@ cd .. export SD_UI_PATH=`pwd`/ui cd stable-diffusion -python --version - uvicorn server:app --app-dir "$SD_UI_PATH" --port 9000 --host 0.0.0.0 read -p "Press any key to continue"