From fc309938a232531ade855c675574f097f78882c0 Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Tue, 29 May 2018 15:55:42 -0400 Subject: [PATCH] follow links Signed-off-by: Jess Frazelle --- build-all.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-all.sh b/build-all.sh index e167953..f0f6fe2 100755 --- a/build-all.sh +++ b/build-all.sh @@ -63,7 +63,7 @@ echo main(){ # get the dockerfiles IFS=$'\n' - files=( $(find . -iname '*Dockerfile' | sed 's|./||' | sort) ) + files=( $(find -L . -iname '*Dockerfile' | sed 's|./||' | sort) ) unset IFS # build all dockerfiles