gosora/update-deps.bat

24 lines
333 B
Batchfile
Raw Normal View History

@echo off
echo Updating the dependencies
2019-03-31 00:39:54 +00:00
go get -u github.com/mailru/easyjson/...
if %errorlevel% neq 0 (
pause
exit /b %errorlevel%
)
easyjson -pkg common
if %errorlevel% neq 0 (
pause
exit /b %errorlevel%
)
2019-03-31 00:39:54 +00:00
go get
if %errorlevel% neq 0 (
pause
exit /b %errorlevel%
)
echo The dependencies were successfully updated
2017-07-12 11:05:18 +00:00
pause