From 8d3d288b649e02459f470526c3824248f759ad2b Mon Sep 17 00:00:00 2001 From: Saifeddine ALOUI Date: Sat, 15 Jul 2023 20:10:22 +0200 Subject: [PATCH] updated --- win_run.bat | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/win_run.bat b/win_run.bat index 8557b957..86a58a35 100644 --- a/win_run.bat +++ b/win_run.bat @@ -29,10 +29,34 @@ set PATH=%PATH%;%SystemRoot%\system32 set INSTALL_ENV_DIR=%cd%\installer_files\lollms_env set MINICONDA_DIR=%cd%\installer_files\miniconda3 -if not exist "%MINICONDA_DIR%\Scripts\activate.bat" ( echo Miniconda not found. && goto end ) +if not exist "%MINICONDA_DIR%\Scripts\activate.bat" ( echo Miniconda not found. Please reinstall lollms using win_install.bat. && goto end ) call "%MINICONDA_DIR%\Scripts\activate.bat" activate "%INSTALL_ENV_DIR%" cd lollms-webui +REM Check for Git updates +git fetch +git status -uno > git_status.txt + +REM Read the Git status from the file +set /p git_status=