mirror of
https://github.com/runelite/plugin-hub.git
synced 2025-12-23 22:48:49 -05:00
package: build multiple simultaneous plugin changes correctly
Something in the build script would eat the remaining stdin for the loop
This commit is contained in:
@@ -44,10 +44,10 @@ fi
|
||||
PLUGIN_CHANGE=
|
||||
while read -r FI ; do
|
||||
if [[ $FI =~ ^plugins/.*$ ]]; then
|
||||
./build_plugin.sh "$FI"
|
||||
./build_plugin.sh "$FI" < /dev/null
|
||||
PLUGIN_CHANGE=true
|
||||
elif [[ "$FI" == "runelite.version" ]]; then
|
||||
./rebuild_all.sh
|
||||
./rebuild_all.sh < /dev/null
|
||||
fi
|
||||
done < <(git diff --name-only "$TRAVIS_COMMIT_RANGE")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user