Skip to content
This repository was archived by the owner on Jul 26, 2023. It is now read-only.

Commit

Permalink
Merge pull request #3 from gearnode/master
Browse files Browse the repository at this point in the history
chore: update from the base repository
  • Loading branch information
simonrdz authored Mar 25, 2020
2 parents 4240576 + 6be0257 commit 7dd6ce7
Show file tree
Hide file tree
Showing 13 changed files with 194 additions and 466 deletions.
16 changes: 16 additions & 0 deletions GNUmakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
BINARY_NAME := get-secret-value

all: vet build

build: FORCE
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o $(CURDIR)/bin/${BINARY_NAME}_linux_amd64
GOOS=darwin GOARCH=amd64 CGO_ENABLED=0 go build -o $(CURDIR)/bin/${BINARY_NAME}_darwin_amd64

vet:
go vet ./...
clean:
$(RM) -r $(CURDIR)/bin

FORCE:

.PHONY: all build vet clean
Loading

0 comments on commit 7dd6ce7

Please sign in to comment.