Skip to content

Commit

Permalink
🧩 [modify-unused]: Static copy includes files/folders starting with '.'.
Browse files Browse the repository at this point in the history
  • Loading branch information
rolyp committed Dec 27, 2024
1 parent c1e2bfa commit 28f9408
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/bundle-website.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ set +x
TO_COPY=()
for CHILD in website/$WEBSITE/*; do
BASENAME="$(basename "$CHILD")"
if [[ "$BASENAME" =~ ^[a-z] ]]; then
if [[ "$BASENAME" =~ ^[a-z.] ]]; then
TO_COPY+=("$CHILD")
fi
done
Expand Down

0 comments on commit 28f9408

Please # to comment.