aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/no-useless-comments
blob: 235eae4b4b71eabeaf2d5bd8de65ed0acabdf483 (plain) (blame)
1
2
3
4
5
6
7
#!/bin/zsh
set -e
for f in ./build/**/*.html ./build/*.html; do
  sed -i 's/<!--\[-->//g' "$f"
  sed -i 's/<!--\]-->//g' "$f"
  sed -i 's/<!---->//g' "$f"
done