Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ export GO15VENDOREXPERIMENT
COMMIT=$(shell git rev-parse HEAD 2> /dev/null || true)

EPOCH_TEST_COMMIT ?= v0.2.0
PACKAGE := github.com/opencontainers/image-tools
TOOLS := \
oci-create-runtime-bundle \
oci-image-validate \
Expand All @@ -27,7 +28,7 @@ check-license:
tools: $(TOOLS)

$(TOOLS): oci-%:
go build -ldflags "-X main.gitCommit=${COMMIT}" ./cmd/$@
go build -ldflags "-X main.gitCommit=${COMMIT}" $(PACKAGE)/cmd/$@

lint:
@echo "checking lint"
Expand Down