File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -18,12 +18,6 @@ precompile:
18
18
go build -a -i -o $(BIN_DIR ) /$(NAME )
19
19
rm $(BIN_DIR ) /$(NAME )
20
20
21
- install-dep :
22
- [ -x bin/dep ] || go build -o bin/dep github.com/golang/dep/cmd/dep
23
-
24
- dep-ensure : install-dep
25
- bin/dep ensure -v
26
-
27
21
test :
28
22
make
29
23
go test -v -race -parallel 3 ./...
@@ -38,11 +32,11 @@ release: $(BIN_DIR)/$(NAME)
38
32
exe=$$ exe.exe; \
39
33
fi ; \
40
34
echo " Creating $$ exe ... (os=$$ os, arch=$$ arch)" ; \
41
- GOOS=$$ os GOARCH=$$ arch GO111MODULE=off go build -tags netgo -installsuffix netgo -ldflags " $( RELEASE_LDFLAGS) " -o $$ exe; \
35
+ GOOS=$$ os GOARCH=$$ arch go build -tags netgo -installsuffix netgo -ldflags " $( RELEASE_LDFLAGS) " -o $$ exe; \
42
36
done ; \
43
37
done
44
38
45
39
update-doc : all
46
40
go run _scripts/update-cmdref.go > CMDREF.md
47
41
48
- .PHONY : all precompile install-dep dep-ensure test release update-doc
42
+ .PHONY : all precompile test release update-doc
You can’t perform that action at this time.
0 commit comments