1
0
Fork 1
Spiegel von https://github.com/dani-garcia/vaultwarden.git synchronisiert 2024-05-19 23:40:06 +02:00

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
Dieser Commit ist enthalten in:
std2main 2021-03-05 15:26:05 -05:00 committet von Std2Main
Ursprung ce99fc8f95
Commit cdf5b6ec2d

Datei anzeigen

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