Skip to content

Commit

Permalink
feat: update quote to fix codestatic analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
f-necas committed Nov 17, 2023
1 parent 0912e26 commit daf45cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ if [[ -z "${CUSTOM_SCRIPTS_DIRECTORY}" ]]; then
else
echo "[INFO] CUSTOM_SCRIPTS_DIRECTORY env variable set to ${CUSTOM_SCRIPTS_DIRECTORY}"
# Regex is needed in jetty9 images, but not alpine's ones.
run-parts -v ${CUSTOM_SCRIPTS_DIRECTORY} --regex='.*'
run-parts -v ${CUSTOM_SCRIPTS_DIRECTORY} --regex=".*"
echo "[INFO] End executing custom scripts"
fi
2 changes: 1 addition & 1 deletion web/src/docker/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ DIR=/docker-entrypoint.d

if [[ -d "$DIR" ]]
then
/bin/run-parts --verbose "$DIR" --regex='.*'
/bin/run-parts --verbose "$DIR" --regex=".*"
fi

exec "$@"

0 comments on commit daf45cf

Please sign in to comment.