minify-html/bench/build.sh

20 lines
258 B
Bash
Raw Normal View History

2021-08-08 07:20:06 -04:00
#!/usr/bin/env bash
set -Eeuo pipefail
shopt -s nullglob
pushd runners >/dev/null
for r in *; do
if [ ! -d "$r" ]; then
continue
fi
echo "Building $r..."
pushd "$r" >/dev/null
./build
popd >/dev/null
done
popd >/dev/null
echo "All done!"