20 lines
399 B
Plaintext
20 lines
399 B
Plaintext
echo "Updating the dependencies"
|
|
{
|
|
cp ./common/common_easyjson.tgo ./common/common_easyjson.go
|
|
} || {
|
|
echo "Failed to copy bundled generated easyjson file"
|
|
}
|
|
|
|
{
|
|
GO111MODULE="off"
|
|
go get -u github.com/mailru/easyjson/...
|
|
} || {
|
|
echo "Defaulting to bundled generated easyjson file"
|
|
}
|
|
GO111MODULE="auto"
|
|
{
|
|
easyjson -pkg common
|
|
} || {
|
|
echo "Defaulting to bundled generated easyjson file"
|
|
}
|
|
go get |