Skip to content

Commit 4a43c68

Browse files
committed
build apigen on make build
1 parent 4f11204 commit 4a43c68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ ldflags:
115115
require-%:
116116
@if ! command -v $* 1> /dev/null 2>&1; then echo "$* not found in ${PATH}"; exit 1; fi
117117

118-
build: WHAT ?= ./cmd/... ./cli/cmd/...
118+
build: WHAT ?= ./cmd/... ./cli/cmd/... ./sdk/cmd/...
119119
build: require-jq require-go require-git verify-go-versions ## Build the project
120120
set -x; for W in $(WHAT); do \
121121
pushd . && cd $${W%..}; \
@@ -128,7 +128,7 @@ build: require-jq require-go require-git verify-go-versions ## Build the project
128128
build-all:
129129
GOOS=$(OS) GOARCH=$(ARCH) $(MAKE) build WHAT='./cmd/...'
130130

131-
install: WHAT ?= ./cmd/... ./cli/cmd/...
131+
install: WHAT ?= ./cmd/... ./cli/cmd/... ./sdk/cmd/...
132132
install: require-jq require-go require-git verify-go-versions ## Install the project
133133
set -x; for W in $(WHAT); do \
134134
pushd . && cd $${W%..}; \

0 commit comments

Comments
 (0)