From 17fabfc0d6010f87ef9b8039d72f8a0873ffcc7d Mon Sep 17 00:00:00 2001 From: bleatingsheep <35132976+b11p@users.noreply.github.com> Date: Thu, 3 Nov 2022 20:39:45 -0400 Subject: [PATCH] fix file not found --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index ed616df..2439b40 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -6,7 +6,7 @@ DIR="${WORKSPACE_DIR}${1}" for FILE_EXT in '*.js' '*.css' '*.html' do - FILES=`find $DIR -type f -path $FILE_EXT` + FILES=`find $DIR -type f -path "$FILE_EXT"` if [ -z "$FILES" ] then echo "no $FILE_EXT files found"