mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-09-03 07:55:05 +00:00
Fix DIRS find command to work on more system
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
committed by
Ian Campbell
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)
|
||||
|
||||
push: $(DIRS)
|
||||
|
Reference in New Issue
Block a user