Skip to content

Commit

Permalink
Double quote to prevent globbing and word splitting.
Browse files Browse the repository at this point in the history
  • Loading branch information
shizunge committed Feb 3, 2024
1 parent fb31b5e commit c9295ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ load_libraries() {
if ! echo "${LOCAL_LOG_LEVEL}" | grep -q -i "NONE"; then
echo "Loading libraries from ${LIB_DIR}"
fi
. ${LIB_DIR}/lib-common.sh
. ${LIB_DIR}/dns-lists-downloader.sh
. "${LIB_DIR}/lib-common.sh"
. "${LIB_DIR}/dns-lists-downloader.sh"
}

init_requests() {
Expand Down

0 comments on commit c9295ec

Please sign in to comment.