1#!/bin/sh2set -eu34tmp=mktemp5cargo test --package $PACKAGE -- $NAME --exact --nocapture --ignored | tee $tmp6raw=mktemp--suffix7sed -n '/=== SNIP START ===/, /=== SNIP END ===/{ /=== SNIP START ===/! { /=== SNIP END ===/! p } }' $tmp > $raw8formatted=mktemp9prettier --use-tabs $raw > $formatted10solhint --fix $formatted1112mv $formatted $OUTPUTdifftreelog
source
.maintain/scripts/generate_api.sh360 Bsourcehistory