remove silent from Makefile so we can see what command it is doing; sort dirs for consistency

Signed-off-by: Avi Deitcher <avi@deitcher.net>
This commit is contained in:
Avi Deitcher 2022-06-07 18:53:42 +03:00
parent 857f53cdff
commit 58486bbe88

View File

@ -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: