Skip to content

Instantly share code, notes, and snippets.

@invisiblek
Last active November 30, 2016 20:56
Show Gist options
  • Save invisiblek/6b84d94fd37adb39eacdeaa9b68c8e99 to your computer and use it in GitHub Desktop.
Save invisiblek/6b84d94fd37adb39eacdeaa9b68c8e99 to your computer and use it in GitHub Desktop.
#!/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