mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-09-04 00:18:53 +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
|
.PHONY: push force-push build forcebuild show-tag clean
|
||||||
|
|
||||||
OPTIONS ?=
|
OPTIONS ?=
|
||||||
@@ -10,18 +10,18 @@ PUSHOPTIONS += -release $(LK_RELEASE)
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
push:
|
push:
|
||||||
@linuxkit pkg push $(OPTIONS) $(PUSHOPTIONS) $(DIRS)
|
linuxkit pkg push $(OPTIONS) $(PUSHOPTIONS) $(DIRS)
|
||||||
|
|
||||||
forcepush:
|
forcepush:
|
||||||
@linuxkit pkg push $(OPTIONS) $(PUSHOPTIONS) --force $(DIRS)
|
linuxkit pkg push $(OPTIONS) $(PUSHOPTIONS) --force $(DIRS)
|
||||||
|
|
||||||
build:
|
build:
|
||||||
@linuxkit pkg build $(OPTIONS) $(DIRS)
|
linuxkit pkg build $(OPTIONS) $(DIRS)
|
||||||
|
|
||||||
forcebuild:
|
forcebuild:
|
||||||
@linuxkit pkg build $(OPTIONS) --force $(DIRS)
|
linuxkit pkg build $(OPTIONS) --force $(DIRS)
|
||||||
|
|
||||||
show-tag:
|
show-tag:
|
||||||
@linuxkit pkg show-tag $(OPTIONS) $(DIRS)
|
linuxkit pkg show-tag $(OPTIONS) $(DIRS)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
Reference in New Issue
Block a user