diff --git a/Open Developer Console.cmd b/Developer Console.cmd similarity index 78% rename from Open Developer Console.cmd rename to Developer Console.cmd index 783800cf..2543ff46 100644 --- a/Open Developer Console.cmd +++ b/Developer Console.cmd @@ -1,5 +1,7 @@ @echo off +echo "Opening Stable Diffusion UI - Developer Console.." & echo. + set SD_BASE_DIR=%cd% set MAMBA_ROOT_PREFIX=%SD_BASE_DIR%\env\mamba set INSTALL_ENV_DIR=%SD_BASE_DIR%\env\installer_env diff --git a/open_dev_console.sh b/developer_console.sh old mode 100755 new mode 100644 similarity index 72% rename from open_dev_console.sh rename to developer_console.sh index e8ed0f05..c1829f2b --- a/open_dev_console.sh +++ b/developer_console.sh @@ -1,6 +1,9 @@ #!/bin/bash if [ "$0" == "bash" ]; then + echo "Opening Stable Diffusion UI - Developer Console.." + echo "" + export SD_BASE_DIR=`pwd` export MAMBA_ROOT_PREFIX="$SD_BASE_DIR/env/mamba" export INSTALL_ENV_DIR="$SD_BASE_DIR/env/installer_env" @@ -9,5 +12,5 @@ if [ "$0" == "bash" ]; then micromamba activate "$INSTALL_ENV_DIR" else - bash --init-file open_dev_console.sh + bash --init-file developer_console.sh fi \ No newline at end of file