This repository has been archived on 2025-10-15. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
minify-html/prebuild.sh

13 lines
124 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -e
pushd "$(dirname "$0")"
# Generate crate::gen::* code.
pushd gen
npm i
bash gen.sh
popd
popd