From eb4dcb8e638d1fc65a745fe78dbccdba5c23854b Mon Sep 17 00:00:00 2001 From: Max Weber Date: Sun, 1 Mar 2020 19:34:34 -0700 Subject: [PATCH] package: build correctly when removing plugins --- travis.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis.sh b/travis.sh index 90600e8de..43a51b802 100755 --- a/travis.sh +++ b/travis.sh @@ -44,7 +44,7 @@ fi PLUGIN_CHANGE= while read -r FI ; do if [[ $FI =~ ^plugins/.*$ ]]; then - ./build_plugin.sh "$FI" < /dev/null + [ -e "$FI" ] && ./build_plugin.sh "$FI" < /dev/null PLUGIN_CHANGE=true elif [[ "$FI" == "runelite.version" ]]; then ./rebuild_all.sh < /dev/null