diff --git a/pkg/Makefile b/pkg/Makefile index 93a59c0c4..efcb0fbf0 100644 --- a/pkg/Makefile +++ b/pkg/Makefile @@ -1,4 +1,4 @@ -DIRS = $(dir $(shell find . -maxdepth 2 -mindepth 2 -type f -name build.yml)) +DIRS = $(dir $(shell find . -maxdepth 2 -mindepth 2 -type f -name build.yml | sort)) .PHONY: push force-push build forcebuild show-tag clean OPTIONS ?= @@ -10,18 +10,18 @@ PUSHOPTIONS += -release $(LK_RELEASE) endif push: - @linuxkit pkg push $(OPTIONS) $(PUSHOPTIONS) $(DIRS) + linuxkit pkg push $(OPTIONS) $(PUSHOPTIONS) $(DIRS) forcepush: - @linuxkit pkg push $(OPTIONS) $(PUSHOPTIONS) --force $(DIRS) + linuxkit pkg push $(OPTIONS) $(PUSHOPTIONS) --force $(DIRS) build: - @linuxkit pkg build $(OPTIONS) $(DIRS) + linuxkit pkg build $(OPTIONS) $(DIRS) forcebuild: - @linuxkit pkg build $(OPTIONS) --force $(DIRS) + linuxkit pkg build $(OPTIONS) --force $(DIRS) show-tag: - @linuxkit pkg show-tag $(OPTIONS) $(DIRS) + linuxkit pkg show-tag $(OPTIONS) $(DIRS) clean: