mirror of https://github.com/istio/istio.io.git
14 lines
343 B
Bash
Executable File
14 lines
343 B
Bash
Executable File
#!/usr/bin/env sh
|
|
set -e
|
|
|
|
hugo version
|
|
echo -ne "html-minifier "
|
|
html-minifier --version
|
|
|
|
hugo --baseURL "$1"
|
|
|
|
if [ "$2" != "-no_minify" ]
|
|
then
|
|
html-minifier --input-dir public --output-dir public --file-ext html --collapse-whitespace --minify-js --minify-css --sort-attributes --sort-class-name --remove-attribute-quotes --remove-comments
|
|
fi
|