Skip to content

Instantly share code, notes, and snippets.

@andromedarabbit
Forked from JMBattista/install_gradle
Last active August 29, 2015 14:27
Show Gist options
  • Save andromedarabbit/2bd0c78ba435bfd4687e to your computer and use it in GitHub Desktop.
Save andromedarabbit/2bd0c78ba435bfd4687e to your computer and use it in GitHub Desktop.

Revisions

  1. andromedarabbit revised this gist Aug 13, 2015. 2 changed files with 3 additions and 3 deletions.
    4 changes: 2 additions & 2 deletions install_gradle
    Original file line number Diff line number Diff line change
    @@ -1,7 +1,7 @@
    #!/bin/bash
    # Allows using Gradle 2.1 with http://codeship.io
    # Allows using Gradle 2.6 with http://codeship.io

    GRADLE=gradle-2.1-bin
    GRADLE=gradle-2.6-bin
    GRADLE_URL="https://services.gradle.org/distributions/$GRADLE.zip"
    wget -N $GRADLE_URL
    mkdir -p ~/gradle
    2 changes: 1 addition & 1 deletion z_environment_variables
    Original file line number Diff line number Diff line change
    @@ -1,2 +1,2 @@
    GRADLE_HOME=/home/rof/gradle-2.1
    GRADLE_HOME=/home/rof/gradle-2.6
    PATH=$GRADLE_HOME/bin:$PATH
  2. @JMBattista JMBattista renamed this gist Oct 12, 2014. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  3. @JMBattista JMBattista created this gist Oct 12, 2014.
    2 changes: 2 additions & 0 deletions gistfile1.txt
    Original 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
    8 changes: 8 additions & 0 deletions install_gradle
    Original 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 ~