We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c9cf81 commit 737bc6eCopy full SHA for 737bc6e
src/override_deployment.sh
@@ -22,7 +22,7 @@
22
23
# Override Deployment
24
25
-for html_file in deploy/*.html; do # Get all HTML files
+find deploy -type f -name "*.html" | while read -r html_file; do # Get all HTML files
26
for js_file in deploy/_just/*.js; do
27
first_line=$(head -n 1 "$js_file")
28
if [[ "$first_line" == "// _just doNotInsert" ||
0 commit comments