gosora/update-deps-linux

16 lines
340 B
Plaintext
Raw Normal View History

echo "Updating the dependencies"
{
cp ./common/common_easyjson.tgo ./common/common_easyjson.go
} || {
echo "Failed to copy bundled generated easyjson file"
}
2019-09-29 07:34:54 +00:00
2019-09-29 06:15:16 +00:00
{
2019-09-29 07:40:44 +00:00
$GO111MODULE = "off"
2019-09-29 07:34:54 +00:00
go get -u github.com/mailru/easyjson/...
2019-09-29 06:15:16 +00:00
easyjson -pkg common
2019-09-29 06:18:43 +00:00
} || {
echo "Defaulting to bundled generated easyjson file"
}
2019-09-29 07:40:44 +00:00
$GO111MODULE = "auto"
2019-09-29 07:34:54 +00:00
go get