From 58486bbe88d23d1e6e5df3d8cf4afafb173d1e7e Mon Sep 17 00:00:00 2001 From: Avi Deitcher Date: Tue, 7 Jun 2022 18:53:42 +0300 Subject: [PATCH] remove silent from Makefile so we can see what command it is doing; sort dirs for consistency Signed-off-by: Avi Deitcher --- pkg/Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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: