-
-
Save andromedarabbit/2bd0c78ba435bfd4687e to your computer and use it in GitHub Desktop.
Revisions
-
andromedarabbit revised this gist
Aug 13, 2015 . 2 changed files with 3 additions and 3 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ #!/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 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 charactersOriginal file line number Diff line number Diff line change @@ -1,2 +1,2 @@ GRADLE_HOME=/home/rof/gradle-2.6 PATH=$GRADLE_HOME/bin:$PATH -
JMBattista renamed this gist
Oct 12, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
JMBattista created this gist
Oct 12, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,2 @@ GRADLE_HOME=/home/rof/gradle-2.1 PATH=$GRADLE_HOME/bin:$PATH 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ #!/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 ~