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
Copy file name to clipboardExpand all lines: Makefile
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -936,6 +936,12 @@ proto-vendor:
936
936
bump-eve-api:
937
937
find . -type f -name "go.mod" -exec grep -q 'github.com/lf-edge/eve-api/go' {} \; -execdir go get -u github.com/lf-edge/eve-api/go \; -execdir go mod tidy \; -execdir go mod vendor \;
938
938
939
+
bump-eve-libs:
940
+
find . -type f -name "go.mod" -exec grep -q 'github.com/lf-edge/eve-libs' {} \; -execdir go get -u github.com/lf-edge/eve-libs \; -execdir go mod tidy \; -execdir go mod vendor \;
941
+
942
+
bump-eve-pillar:
943
+
find . -type f -name "go.mod" -exec grep -q 'github.com/lf-edge/eve/pkg/pillar' {} \; -execdir go get -u github.com/lf-edge/eve/pkg/pillar \; -execdir go mod tidy \; -execdir go mod vendor \;
944
+
939
945
.PHONY: proto-api-%
940
946
941
947
rc-release:
@@ -1141,7 +1147,9 @@ help:
1141
1147
@echo " check-docker-hashes-consistency check for Dockerfile image inconsistencies"
1142
1148
@echo
1143
1149
@echo "Seldom used maintenance and development targets:"
1144
-
@echo " bump-eve-api bump eve-api in all subprojects"
1150
+
@echo " bump-eve-api bump eve-api in all subprojects"
1151
+
@echo " bump-eve-libs bump eve-libs in all subprojects"
1152
+
@echo " bump-eve-pillar bump eve/pkg/pillar in all subprojects"
1145
1153
@echo
1146
1154
@echo "Commonly used build targets:"
1147
1155
@echo " build-tools builds linuxkit utilities and installs under build-tools/bin"
0 commit comments