hydrus/git_pull.bat

14 lines
135 B
Batchfile
Raw Normal View History

2022-10-19 20:44:13 +00:00
@ECHO off
where /q git
IF ERRORLEVEL 1 (
SET /P gumpf=You do not seem to git installed!
EXIT /B 1
)
2022-10-19 20:44:13 +00:00
git pull
SET /P done=Done!