Skip to content

Instantly share code, notes, and snippets.

@NoNamePro0
Created June 18, 2020 12:12
Show Gist options
  • Save NoNamePro0/41c61d28a932b997255a3bac8528a9f3 to your computer and use it in GitHub Desktop.
Save NoNamePro0/41c61d28a932b997255a3bac8528a9f3 to your computer and use it in GitHub Desktop.
Install Gradle
#!/bin/bash
GRADLE_VERSION=6.5
wget "https://services.gradle.org/distributions/gradle-$GRADLE_VERSION-bin.zip" -P /gradle
unzip /gradle/gradle-$GRADLE_VERSION-bin.zip -d /gradle/
export PATH=$PATH:/gradle/gradle-$GRADLE_VERSION/bin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment