mirror of
https://github.com/nabbar/golib.git
synced 2025-12-24 11:51:02 +08:00
13 lines
201 B
Bash
Executable File
13 lines
201 B
Bash
Executable File
#!/bin/bash
|
|
go clean -r -x -cache -testcache -modcache
|
|
if [[ ! -e go.mod ]] ;
|
|
then
|
|
go mod init
|
|
go get ./...
|
|
fi
|
|
|
|
go mod download
|
|
go mod vendor
|
|
|
|
go get -u ./... && go mod download && go mod vendor
|