You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
git checkout -- go.mod go.sum # can differ between go1.11 and go1.12
48
+
git checkout -- vendor/modules.txt # can differ between go1.12 and go1.13
43
49
git diff --exit-code # check no changes
44
50
.PHONY: check_generated
45
51
52
+
fast_check_generated:
53
+
$(MAKE) --always-make fast_generate
54
+
git checkout -- go.mod go.sum # can differ between go1.11 and go1.12
55
+
git checkout -- vendor/modules.txt # can differ between go1.12 and go1.13
56
+
git diff --exit-code # check no changes
57
+
.PHONY: fast_check_generated
58
+
46
59
release:
47
60
rm -rf dist
48
61
curl -sL https://git.io/goreleaser | bash
@@ -65,7 +78,8 @@ tools/go.mod:
65
78
cd tools && GO111MODULE=on go mod init local-tools
66
79
67
80
tools/godownloader: Makefile tools/go.mod
68
-
cd tools && GOBIN=$(CURDIR)/tools GO111MODULE=on go get github.com/goreleaser/godownloader@3b90d248ba30307915288f08ab3f2fc2d9f6710c
0 commit comments