We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98cc64f commit 5043d30Copy full SHA for 5043d30
Makefile
@@ -15,7 +15,10 @@ default: build
15
.PHONY : build build-static test install-lint-deps lint go-test fmt fmtcheck verify-vendor verify create-release-files release
16
17
build:
18
- @$(GO) build .
+ @echo Building
19
+ $(shell mkdir -p ./bin)
20
+ @$(GO) build -o bin/$(GARM_PROVIDER_NAME) .
21
+ @echo Binaries are available in $(PWD)/bin
22
23
clean: ## Clean up build artifacts
24
@rm -rf ./bin ./build ./release
0 commit comments