-
-
Save mlocher/2288eba856760f11db51 to your computer and use it in GitHub Desktop.
Install Gradle
This file contains hidden or 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 | |
# Allows using Gradle 2.1 with http://codeship.io | |
GRADLE=gradle-2.1-bin | |
GRADLE_URL="https://services.gradle.org/distributions/$GRADLE.zip" | |
wget -N $GRADLE_URL | |
mkdir -p ~/gradle | |
unzip $GRADLE.zip -d ~ |
This file contains hidden or 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
GRADLE_HOME=/home/rof/gradle-2.1 | |
PATH=$GRADLE_HOME/bin:$PATH |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Big help. Thanks.