Created
November 4, 2013 05:10
-
-
Save warmwaffles/7298310 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "pulling nightly down..." | |
mkdir -p libs | |
rm libs/*.jar | |
curl -o libs/gdx.jar "http://libgdx.badlogicgames.com/nightlies/dist/gdx.jar" | |
curl -o libs/gdx-sources.jar "http://libgdx.badlogicgames.com/nightlies/dist/sources/gdx-sources.jar" | |
curl -o libs/gdx-natives.jar "http://libgdx.badlogicgames.com/nightlies/dist/gdx-natives.jar" | |
curl -o libs/gdx-backend-lwjgl.jar "http://libgdx.badlogicgames.com/nightlies/dist/gdx-backend-lwjgl.jar" | |
curl -o libs/gdx-backend-lwjgl-sources.jar "http://libgdx.badlogicgames.com/nightlies/dist/sources/gdx-backend-lwjgl-sources.jar" | |
curl -o libs/gdx-backend-lwjgl-natives.jar "http://libgdx.badlogicgames.com/nightlies/dist/gdx-backend-lwjgl-natives.jar" | |
curl -o libs/junit.jar "http://search.maven.org/remotecontent?filepath=junit/junit/4.11/junit-4.11.jar" | |
curl -o libs/junit-sources.jar "http://search.maven.org/remotecontent?filepath=junit/junit/4.11/junit-4.11-sources.jar" | |
curl -o libs/hamcrest-core.jar "http://search.maven.org/remotecontent?filepath=org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar" | |
curl -o libs/hamcrest-core-source.jar "http://search.maven.org/remotecontent?filepath=org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar" | |
echo "done" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment