Skip to content

Commit

Permalink
update for k8s 1.16.1
Browse files Browse the repository at this point in the history
  • Loading branch information
evanlucas committed Oct 11, 2019
1 parent 4647e9e commit dbcd150
Show file tree
Hide file tree
Showing 5 changed files with 800 additions and 334 deletions.
14 changes: 13 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
export GO111MODULE = on
OSTYPE := $(shell uname -s | tr '[A-Z]' '[a-z]')

# Go build flags
ifeq ($(GOOS),)
ifeq ($(OSTYPE), darwin)
GOOS := darwin
else
GOOS := linux
endif
endif

build:
go build
CGO_ENABLED=0 GOOS=$(GOOS) GOARCH=$(GOARCH) go build
./kcfishgen > completions/kubectl.fish
Loading

0 comments on commit dbcd150

Please sign in to comment.