mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-19 17:26:28 +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)
|
||||
|
||||
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)
|
||||
|
||||
push: $(DIRS)
|
||||
|
Loading…
Reference in New Issue
Block a user