From 22fe54e844348ba3af8d626bd5af41cd5e41da17 Mon Sep 17 00:00:00 2001 From: Mike Aizatsky Date: Thu, 13 Oct 2016 13:40:35 -0700 Subject: [PATCH] [infra] better all.sh --- all.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/all.sh b/all.sh index 3081f7262..de2026c8b 100755 --- a/all.sh +++ b/all.sh @@ -20,6 +20,9 @@ ./infra/base-images/all.sh -for project in boringssl expat freetype2 libchewing libpng libxml2 re2 sqlite3 zlib; do +IGNORE="docs:infra:tpm2:scripts" + +for project in *; do + if [[ -f $project || ":${IGNORE}:" == *":$project:"* ]]; then continue; fi docker build -t ossfuzz/$project $project/ -done \ No newline at end of file +done