mirror of
https://github.com/runelite/plugin-hub.git
synced 2026-07-28 08:25:58 -04:00
package: Allow force building of multiple plugins at once
Travis doesn't let you pass spaces to env vars in the custom build ui
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user