File tree Expand file tree Collapse file tree 5 files changed +147
-48
lines changed Expand file tree Collapse file tree 5 files changed +147
-48
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ build: fmt test
2
2
export GOPROXY=https://goproxy.io
3
3
CGO_ENABLE=0 go build -ldflags " -w -s" -o bin/hd
4
4
5
- build-linux : fmt lint
5
+ build-linux : fmt lint build-linux-no-check
6
+ build-linux-no-check :
6
7
export GOPROXY=https://goproxy.io
7
8
CGO_ENABLE=0 GOOS=linux go build -ldflags " -w -s" -o bin/linux/hd
8
9
upx bin/linux/hd
Original file line number Diff line number Diff line change @@ -17,14 +17,15 @@ require (
17
17
github.com/spf13/cobra v1.2.1
18
18
github.com/spf13/pflag v1.0.5
19
19
github.com/spf13/viper v1.9.0
20
- github.com/stretchr/testify v1.7.0
20
+ github.com/stretchr/testify v1.8.1
21
21
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8
22
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
22
+ gopkg.in/yaml.v3 v3.0.1
23
23
)
24
24
25
- require github.com/creack/pty v1.1.17
26
-
27
- require github.com/prometheus/client_golang v1.11.1 // indirect
25
+ require (
26
+ github.com/antonmedv/expr v1.11.1
27
+ github.com/creack/pty v1.1.17
28
+ )
28
29
29
30
require (
30
31
github.com/Microsoft/go-winio v0.4.16 // indirect
You can’t perform that action at this time.
0 commit comments