feat(tinyusb): Adds support for seed corpus integration (#9525)

This commit is contained in:
Nathaniel Brough 2023-01-29 16:29:46 -08:00 committed by GitHub
parent d5a7d1c0ba
commit 7139d56a6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -22,5 +22,9 @@ do
make -C $h get-deps
make -C $h all
cp $h/_build/$(basename $h) $OUT/
corpus=$h/$(basename $h)_seed_corpus.zip
if test -f $corpus; then
cp $corpus $OUT/
fi
done