12 lines
159 B
Batchfile
12 lines
159 B
Batchfile
@echo off
|
|
|
|
echo Updating the dependencies
|
|
go get
|
|
if %errorlevel% neq 0 (
|
|
pause
|
|
exit /b %errorlevel%
|
|
)
|
|
|
|
echo The dependencies were successfully updated
|
|
pause
|