Skip to content

Commit 737bc6e

Browse files
fix
1 parent 1c9cf81 commit 737bc6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/override_deployment.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
# Override Deployment
2424

25-
for html_file in deploy/*.html; do # Get all HTML files
25+
find deploy -type f -name "*.html" | while read -r html_file; do # Get all HTML files
2626
for js_file in deploy/_just/*.js; do
2727
first_line=$(head -n 1 "$js_file")
2828
if [[ "$first_line" == "// _just doNotInsert" ||

0 commit comments

Comments
 (0)