Fix script issues

Temporarily explicitly declare Spigot dependencies
I don't have the time to deal with whatever the difference between remote and local bash/maven versions is right now.
This commit is contained in:
Jikoo
2021-06-11 12:05:38 -04:00
parent 07a8e3b973
commit ff7243db6a
4 changed files with 12 additions and 19 deletions

View File

@@ -30,8 +30,8 @@ get_buildtools () {
wget https://hub.spigotmc.org/jenkins/job/BuildTools/lastSuccessfulBuild/artifact/target/BuildTools.jar -O $buildtools
}
versions=$(. ./scripts/get_spigot_versions.sh)
echo Found Spigot dependencies: "$versions"
readarray -t versions <<< "$(. ./scripts/get_spigot_versions.sh)"
echo Found Spigot dependencies: "${versions[@]}"
for version in "${versions[@]}"; do
set -e