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 aca16ad commit fc9c7b1Copy full SHA for fc9c7b1
www/fssg
@@ -624,7 +624,10 @@ if (location.hostname==="localhost"||location.hostname==="127.0.0.1"){
624
')
625
fi
626
627
- echo "$processed_content" | minify_and_write "$out_file"
+ tmp_content=$(mktemp)
628
+ printf '%s\n' "$processed_content" >"$tmp_content"
629
+ minify_and_write "$out_file" <"$tmp_content"
630
+ rm -f "$tmp_content"
631
log_verbose "Finished: $src_file -> $out_file"
632
return 0
633
}
0 commit comments