Rename dev console scripts

This commit is contained in:
cmdr2 2022-10-10 19:38:41 +05:30
parent 1f7c7909c2
commit a6913dfe29
2 changed files with 6 additions and 1 deletions

View File

@ -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

5
open_dev_console.sh → developer_console.sh Executable file → Normal file
View File

@ -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