From add09e52ef377111dbc06fdd3e76c8f758555161 Mon Sep 17 00:00:00 2001 From: JeLuF Date: Wed, 16 Nov 2022 20:56:11 +0100 Subject: [PATCH] Fix typo in the installer's error messages --- scripts/on_sd_start.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/on_sd_start.bat b/scripts/on_sd_start.bat index 51a51549..205cc3ce 100644 --- a/scripts/on_sd_start.bat +++ b/scripts/on_sd_start.bat @@ -275,7 +275,7 @@ echo. > "..\models\vae\Put your VAE files here.txt" for %%I in ("RealESRGAN_x4plus.pth") do if "%%~zI" EQU "67040989" ( echo "Data files (weights) necessary for ESRGAN (Resolution Upscaling) x4plus were already downloaded" ) else ( - echo. & echo "The GFPGAN model file present at %cd%\RealESRGAN_x4plus.pth is invalid. It is only %%~zI bytes in size. Re-downloading.." & echo. + echo. & echo "The RealESRGAN model file present at %cd%\RealESRGAN_x4plus.pth is invalid. It is only %%~zI bytes in size. Re-downloading.." & echo. del "RealESRGAN_x4plus.pth" ) ) @@ -305,7 +305,7 @@ echo. > "..\models\vae\Put your VAE files here.txt" for %%I in ("RealESRGAN_x4plus_anime_6B.pth") do if "%%~zI" EQU "17938799" ( echo "Data files (weights) necessary for ESRGAN (Resolution Upscaling) x4plus_anime were already downloaded" ) else ( - echo. & echo "The GFPGAN model file present at %cd%\RealESRGAN_x4plus_anime_6B.pth is invalid. It is only %%~zI bytes in size. Re-downloading.." & echo. + echo. & echo "The RealESRGAN model file present at %cd%\RealESRGAN_x4plus_anime_6B.pth is invalid. It is only %%~zI bytes in size. Re-downloading.." & echo. del "RealESRGAN_x4plus_anime_6B.pth" ) )