File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 16
16
GO111MODULE=on CGO_ENABLED=0 $(GOCMD) build -o bin/$(BINARY_NAME)-$(shell $(GOCMD) run . --version | cut -d" " -f 3)-osx .
17
17
18
18
build-linux :
19
- docker run --rm -v $(shell pwd) :/app -w /app golang:1.20 -alpine /bin/sh -c " GO111MODULE=on CGO_ENABLED=0 $( GOCMD) build -o bin/$( BINARY_NAME) -$( shell $( GOCMD) run . --version | cut -d" " -f 3) -linux ."
19
+ docker run --rm -v $(shell pwd) :/app -w /app golang:1.22 -alpine /bin/sh -c " GO111MODULE=on CGO_ENABLED=0 $( GOCMD) build -o bin/$( BINARY_NAME) -$( shell $( GOCMD) run . --version | cut -d" " -f 3) -linux ."
20
20
21
21
clean :
22
22
rm -rf ./bin
25
25
go vet
26
26
27
27
lint :
28
- docker run --rm -v $(shell pwd) :/app -w /app golangci/golangci-lint:latest-alpine golangci-lint run --deadline=65s
28
+ docker run --rm -v $(shell pwd) :/app -w /app golangci/golangci-lint:latest-alpine golangci-lint run
29
29
30
30
test :
31
31
$(GOTEST ) -v ./...
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import (
11
11
"github.com/urfave/cli/v2"
12
12
)
13
13
14
- const VERSION = "1.0.4 "
14
+ const VERSION = "1.0.5 "
15
15
16
16
func main () {
17
17
cli .AppHelpTemplate =
You can’t perform that action at this time.
0 commit comments