mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-09-02 23:47:11 +00:00
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:
12
pkg/Makefile
12
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:
|
||||
|
Reference in New Issue
Block a user