From ed4adeaeb5bdcec5803d4f36b59895a94033eb9c Mon Sep 17 00:00:00 2001 From: Azareal Date: Mon, 1 Apr 2019 15:49:36 +1000 Subject: [PATCH] Invoke easyjson in these two places too, we really should add some sort of fallback for this. --- update-deps-linux | 2 +- update-deps.bat | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/update-deps-linux b/update-deps-linux index 6d1b7668..ba85366c 100644 --- a/update-deps-linux +++ b/update-deps-linux @@ -1,4 +1,4 @@ echo "Updating the dependencies" go get -u github.com/mailru/easyjson/... - +easyjson -pkg common go get \ No newline at end of file diff --git a/update-deps.bat b/update-deps.bat index 570ab408..a805fed2 100644 --- a/update-deps.bat +++ b/update-deps.bat @@ -7,6 +7,12 @@ if %errorlevel% neq 0 ( exit /b %errorlevel% ) +easyjson -pkg common +if %errorlevel% neq 0 ( + pause + exit /b %errorlevel% +) + go get if %errorlevel% neq 0 ( pause