mirror of
https://github.com/Sygil-Dev/sygil-webui.git
synced 2024-12-15 06:21:34 +03:00
15 lines
353 B
Batchfile
15 lines
353 B
Batchfile
@echo off
|
|
|
|
@rem prevent the window from closing after an error
|
|
if not defined in_subprocess (cmd /k set in_subprocess=y ^& %0 %*) & exit )
|
|
|
|
set INSTALL_ENV_DIR=%cd%\installer_files\env
|
|
set PATH=%INSTALL_ENV_DIR%;%INSTALL_ENV_DIR%\Library\bin;%INSTALL_ENV_DIR%\Scripts;%PATH%
|
|
|
|
@rem update the repo
|
|
if exist ".git" (
|
|
call git pull
|
|
)
|
|
|
|
conda env update
|