From bf5ee78b05e585f9ff2d56abab45056c73266861 Mon Sep 17 00:00:00 2001 From: Max Weber Date: Sun, 23 Feb 2020 01:20:42 -0700 Subject: [PATCH] package: Allow force building of multiple plugins at once Travis doesn't let you pass spaces to env vars in the custom build ui --- travis.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/travis.sh b/travis.sh index 42d9a2ed0..7b7998691 100755 --- a/travis.sh +++ b/travis.sh @@ -34,9 +34,10 @@ if [[ "$FORCE_BUILD" == "ALL" ]]; then ./rebuild_all.sh exit elif [[ -n "${FORCE_BUILD+x}" ]]; then - for FI in "${FORCE_BUILD[@]}"; do - ./build_plugin.sh "plugins/$FORCE_BUILD" + for FI in $(echo "$FORCE_BUILD" | tr ',' '\n'); do + ./build_plugin.sh "plugins/$FI" done + ./build_manifest.sh exit fi