Skip to content
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
roots
oci
.stacker
hack
3 changes: 2 additions & 1 deletion tools.mk
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ TOOLS_DIR := $(TOP_LEVEL)/hack/tools
TOOLS_BIN_DIR := $(TOOLS_DIR)/bin
BUILD_DIR := $(TOP_LEVEL)/build
BUILD_OCI_DIR := $(BUILD_DIR)/oci
STACKER_VERSION := v1.0.0-rc4

export STACKER := $(TOOLS_BIN_DIR)/stacker
export SKOPEO := skopeo
Expand All @@ -11,7 +12,7 @@ STACKER_WITH_BUILD_DIR := $(STACKER) --stacker-dir $(BUILD_DIR)/.stacker --oci-d

$(STACKER):
mkdir -p $(TOOLS_BIN_DIR)
curl -fsSL https://github.com/andaaron/stacker/releases/download/v1.0.0-rc4-copy/stacker -o $@
curl -fsSL https://github.com/project-stacker/stacker/releases/download/$(STACKER_VERSION)/stacker -o "$@"
chmod +x $@

.PHONY: check-skopeo
Expand Down