use gawk not awk in doc index generation

This commit is contained in:
Trevor Spiteri 2021-03-24 09:49:08 +01:00
parent c0e621438d
commit 5fce801579
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ cd public
cp dev/*/index.html index.html
function filter {
awk "$1" < index.html > index.html.tmp
gawk "$1" < index.html > index.html.tmp
mv index.html.tmp index.html
}