Last active
November 30, 2016 20:56
-
-
Save invisiblek/6b84d94fd37adb39eacdeaa9b68c8e99 to your computer and use it in GitHub Desktop.
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 | |
# manually downloads gello into maven's cache so you can build | |
# this is not a permenant solution... | |
v=40 | |
rm -rf ~/.m2/repository/org/cyanogenmod/gello | |
mkdir -p ~/.m2/repository/org/cyanogenmod/gello/$v | |
for f in gello-$v.apk gello-$v.apk.md5 gello-$v.apk.sha1; do | |
wget --no-check-certificate https://maven.cyanogenmod.org/artifactory/gello_prebuilds/org/cyanogenmod/gello/$v/$f -O ~/.m2/repository/org/cyanogenmod/gello/$v/$f | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment