We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f02ef8 commit aa8da34Copy full SHA for aa8da34
staticcheck.go
@@ -1,7 +1,9 @@
1
package golibrary
2
3
import (
4
+ "github.com/ddkwork/golibrary/mylog"
5
"github.com/ddkwork/golibrary/stream"
6
+ "os"
7
)
8
9
func StaticCheck() {
@@ -11,6 +13,7 @@ func StaticCheck() {
11
13
}
12
14
15
func UpdateSelf() {
16
+ mylog.Check(os.Setenv("GOPROXY", "direct"))
17
hash := stream.GetLastCommitHashLocal("D:\\workspace\\workspace\\golibrary")
18
stream.RunCommand("go get -v -x github.com/ddkwork/golibrary@" + hash)
19
stream.RunCommand("go mod tidy")
0 commit comments