mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-21 10:09:07 +00:00
Fix DIRS find command to work on more system
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
parent
1ea64d33f0
commit
a315e0b681
@ -1,4 +1,4 @@
|
|||||||
DIRS = $(shell find . -type d -depth 1)
|
DIRS = $(shell find . -maxdepth 1 -mindepth 1 -type d)
|
||||||
.PHONY: clean dirs $(DIRS)
|
.PHONY: clean dirs $(DIRS)
|
||||||
|
|
||||||
push:
|
push:
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
DIRS = $(shell find . -type d -depth 1)
|
DIRS = $(shell find . -maxdepth 1 -mindepth 1 -type d)
|
||||||
.PHONY: clean dirs $(DIRS)
|
.PHONY: clean dirs $(DIRS)
|
||||||
|
|
||||||
push: $(DIRS)
|
push: $(DIRS)
|
||||||
|
Loading…
Reference in New Issue
Block a user