hydrus/git_pull.bat

21 lines
175 B
Batchfile
Raw Normal View History

2022-10-19 20:44:13 +00:00
@ECHO off
2022-11-23 21:01:41 +00:00
pushd "%~dp0"
where /q git
IF ERRORLEVEL 1 (
2023-08-30 16:25:24 +00:00
SET /P gumpf="You do not seem to have git installed!"
2022-11-23 21:01:41 +00:00
popd
EXIT /B 1
)
2022-10-19 20:44:13 +00:00
git pull
2022-11-23 21:01:41 +00:00
popd
2023-08-30 16:25:24 +00:00
SET /P done="Done!"