Skip to content

Commit 879bb23

Browse files
build: remove unnecessary go mod tidy/vendor
Signed-off-by: Niraj Yadav <[email protected]>
1 parent 92ba605 commit 879bb23

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Makefile

+1-2
Original file line numberDiff line numberDiff line change
@@ -242,8 +242,7 @@ envtest:
242242
OPERATOR_SDK = $(shell pwd)/bin/operator-sdk
243243
.PHONY: operator-sdk
244244
operator-sdk:
245-
# FIXME: Remove `go mod tidy && go mod vendor` once we find the reason why ci workflow fails.
246-
cd ./tools && go mod tidy && go mod vendor && go build -o $(OPERATOR_SDK) ./vendor/$(shell grep operator-sdk tools/tools.go | sed 's/.*_ "//;s/"//')
245+
cd ./tools && go build -o $(OPERATOR_SDK) ./vendor/$(shell grep operator-sdk tools/tools.go | sed 's/.*_ "//;s/"//')
247246

248247
# protoc-gen-go gets installed from the vendor/ directory.
249248
PROTOC_GEN_GO = $(shell pwd)/bin/protoc-gen-go

0 commit comments

Comments
 (0)