Skip to content

Commit

Permalink
fix(makefile): path of command
Browse files Browse the repository at this point in the history
  • Loading branch information
leodido authored and fntlnz committed Nov 25, 2018
1 parent 754a59b commit 7627b94
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ GIT_BRANCH_CLEAN := $(shell echo $(GIT_BRANCH) | sed -e "s/[^[:alnum:]]/-/g")
IMAGE_BPFTRACE_BRANCH := quay.io/fntlnz/kubectl-trace-bpftrace:$(GIT_BRANCH_CLEAN)
IMAGE_BPFTRACE_COMMIT := quay.io/fntlnz/kubectl-trace-bpftrace:$(GIT_COMMIT)


IMAGE_BUILD_FLAGS ?= "--no-cache"

kubectl_trace ?= _output/bin/kubectl-trace
Expand All @@ -20,7 +19,7 @@ kubectl_trace ?= _output/bin/kubectl-trace
build: clean ${kubectl_trace}

${kubectl_trace}:
GO111MODULE=on $(GO) build -o $@ ./cmd/kubectl-trace
GO111MODULE=on $(GO) build -o $@ ./cmd

.PHONY: clean
clean:
Expand Down

0 comments on commit 7627b94

Please sign in to comment.