mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2024-11-26 10:16:12 +01:00
21 lines
819 B
Batchfile
21 lines
819 B
Batchfile
@echo off
|
|
|
|
if exist "%SD_BASE_DIR%\env" exit /b
|
|
|
|
set suggested_dir=%~d0\stable-diffusion-ui
|
|
|
|
echo "Please install Stable Diffusion UI at the root of your drive. This avoids problems with path length limits in Windows." & echo.
|
|
set /p answer="Press Enter to install at %suggested_dir%, or type 'c' (without quotes) to install at the current location (press enter or type 'c'): "
|
|
|
|
if /i "%answer:~,1%" NEQ "c" (
|
|
if exist "%suggested_dir%" (
|
|
echo. & echo "Sorry, %suggested_dir% already exists! Cannot overwrite that folder!" & echo.
|
|
pause
|
|
exit
|
|
)
|
|
|
|
xcopy "%SD_BASE_DIR%" "%suggested_dir%" /s /i /Y /Q
|
|
echo Please run the %START_CMD_FILENAME% file inside %suggested_dir% . Do not use this folder anymore > "%SD_BASE_DIR%/READ_ME - DO_NOT_USE_THIS_FOLDER.txt"
|
|
|
|
cd %suggested_dir%
|
|
) |