-
-
Save andromedarabbit/2bd0c78ba435bfd4687e to your computer and use it in GitHub Desktop.
Upgrade Gradle Codeship
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 | |
# Allows using Gradle 2.6 with http://codeship.io | |
GRADLE=gradle-2.6-bin | |
GRADLE_URL="https://services.gradle.org/distributions/$GRADLE.zip" | |
wget -N $GRADLE_URL | |
mkdir -p ~/gradle | |
unzip $GRADLE.zip -d ~ |
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
GRADLE_HOME=/home/rof/gradle-2.6 | |
PATH=$GRADLE_HOME/bin:$PATH |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment