Browse Source

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
std2main 4 years ago
parent
commit
cdf5b6ec2d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docker/Makefile

+ 1 - 1
docker/Makefile

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