diff --git a/dev-update-linux b/dev-update-linux index 812117b2..52aa63e0 100644 --- a/dev-update-linux +++ b/dev-update-linux @@ -1,5 +1,6 @@ echo "Updating the dependencies" go get +go get -u github.com/mailru/easyjson/... echo "Updating Gosora" git stash diff --git a/dev-update-travis b/dev-update-travis index 32205d50..87b106bc 100644 --- a/dev-update-travis +++ b/dev-update-travis @@ -1,3 +1,4 @@ echo "Building the patcher" go generate +go get -u github.com/mailru/easyjson/... go build -o Patcher "./patcher" \ No newline at end of file diff --git a/dev-update.bat b/dev-update.bat index fa811d3b..a2506ae3 100644 --- a/dev-update.bat +++ b/dev-update.bat @@ -7,6 +7,8 @@ if %errorlevel% neq 0 ( exit /b %errorlevel% ) +go get -u github.com/mailru/easyjson/... + echo Updating Gosora git stash if %errorlevel% neq 0 ( diff --git a/update-deps-linux b/update-deps-linux index 9297409b..7c0b65bf 100644 --- a/update-deps-linux +++ b/update-deps-linux @@ -1,2 +1,4 @@ echo "Updating the dependencies" -go get \ No newline at end of file +go get + +go get -u github.com/mailru/easyjson/... \ No newline at end of file diff --git a/update-deps.bat b/update-deps.bat index 94964116..84b31ccc 100644 --- a/update-deps.bat +++ b/update-deps.bat @@ -7,5 +7,7 @@ if %errorlevel% neq 0 ( exit /b %errorlevel% ) +go get -u github.com/mailru/easyjson/... + echo The dependencies were successfully updated pause