Add a dot in find command.

Add a dot indicting current directory to search by find.

find in mac won't work without the dot
pull/1463/head
std2main 4 years ago committed by Std2Main
parent ce99fc8f95
commit cdf5b6ec2d

@ -1,4 +1,4 @@
OBJECTS := $(shell find -mindepth 2 -name 'Dockerfile*')
OBJECTS := $(shell find ./ -mindepth 2 -name 'Dockerfile*')
all: $(OBJECTS)

Loading…
Cancel
Save