Skip to content

Commit 88ed128

Browse files
committed
fix version
1 parent 2f39b58 commit 88ed128

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ all: build
44
pairs := darwin/amd64 linux/amd64 linux/arm64
55
GOPATH ?= ~/go
66
export GO111MODULE=on
7-
VERSION ?= v1.0.1
7+
VERSION ?= v1.1.0
88
K6_VERSION ?= v0.43.0
99

1010
fmt:
@@ -26,12 +26,12 @@ build-all: build-arm-v7
2626
GOOS=$$os GOARCH=$$arch $(GOPATH)/bin/xk6 build $(K6_VERSION) --with github.com/vesoft-inc/k6-plugin@$(VERSION) ;\
2727
mv k6 k6-$$os-$$arch; \
2828
done
29-
cd tools
29+
cd tools ;\
3030
for pair in $(pairs);do echo $$pair; \
3131
os=`echo $$pair | cut -d / -f 1 ` ;\
3232
arch=`echo $$pair | cut -d / -f 2 ` ;\
3333
GOOS=$$os GOARCH=$$arch go build ;\
34-
mv tools tools-$$os-$$arch-; \
34+
mv tools tools-$$os-$$arch; \
3535
done
3636

3737
build-arm-v7:

0 commit comments

Comments
 (0)