vw_small

Hardened fork of Vaultwarden (https://github.com/dani-garcia/vaultwarden) with fewer features.
git clone https://git.philomathiclife.com/repos/vw_small
Log | Files | Refs | README

commit cdf5b6ec2dacecd06d6aa107d634e84650acf7a6
parent ce99fc8f955fdb3163179c18562953a0631f4b94
Author: std2main <76828065+std2main@users.noreply.github.com>
Date:   Fri,  5 Mar 2021 15:26:05 -0500

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

Diffstat:
Mdocker/Makefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docker/Makefile b/docker/Makefile @@ -1,4 +1,4 @@ -OBJECTS := $(shell find -mindepth 2 -name 'Dockerfile*') +OBJECTS := $(shell find ./ -mindepth 2 -name 'Dockerfile*') all: $(OBJECTS)