From 7139d56a6bb4e3a3a045b9baf91163a6db225b85 Mon Sep 17 00:00:00 2001 From: Nathaniel Brough Date: Sun, 29 Jan 2023 16:29:46 -0800 Subject: [PATCH] feat(tinyusb): Adds support for seed corpus integration (#9525) --- projects/tinyusb/build.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/projects/tinyusb/build.sh b/projects/tinyusb/build.sh index 93f094573..ccb910507 100755 --- a/projects/tinyusb/build.sh +++ b/projects/tinyusb/build.sh @@ -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