Merge pull request #814 from ZeroCool940711/dev

Added "git pull" and "git stash" to the cmd scripts so the repo is checked on each launch for updates.
This commit is contained in:
ZeroCool 2022-09-07 19:25:15 -07:00 committed by GitHub
commit 32a9999441
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -34,6 +34,9 @@ IF "%CONDA_PATH%"=="" (
exit /b 1
)
call git stash
call git pull
:foundPath
call "%CONDA_PATH%\Scripts\activate.bat"
call conda env create -n "%conda_env_name%" -f environment.yaml

View File

@ -35,6 +35,9 @@ IF "%CONDA_PATH%"=="" (
exit /b 1
)
call git stash
call git pull
:foundPath
call "%CONDA_PATH%\Scripts\activate.bat"
call conda env create -n "%conda_env_name%" -f environment.yaml