Commits
md_5 authored e83f4b5a6cf
234 234 | ex.printStackTrace(); |
235 235 | return; |
236 236 | } |
237 237 | System.out.println( "Found version" ); |
238 238 | System.out.println( verInfo ); |
239 239 | |
240 240 | buildInfo = new Gson().fromJson( verInfo, BuildInfo.class ); |
241 241 | |
242 242 | if ( buildNumber != -1 && buildInfo.getToolsVersion() != -1 && buildNumber < buildInfo.getToolsVersion() ) |
243 243 | { |
244 - | System.err.println( "**** Your BuildTools is out of date and will not build the requested version. Please grab a new copy from https://www.spigotmc.org/" ); |
244 + | System.err.println( "**** Your BuildTools is out of date and will not build the requested version. Please grab a new copy from https://www.spigotmc.org/go/buildtools-dl" ); |
245 245 | System.exit( 1 ); |
246 246 | } |
247 247 | } |
248 248 | |
249 249 | pull( buildGit, buildInfo.getRefs().getBuildData() ); |
250 250 | pull( bukkitGit, buildInfo.getRefs().getBukkit() ); |
251 251 | pull( craftBukkitGit, buildInfo.getRefs().getCraftBukkit() ); |
252 252 | pull( spigotGit, buildInfo.getRefs().getSpigot() ); |
253 253 | } |
254 254 | |