https://github.com/otakuchiyan/DNSman
Raw File
Tip revision: de9832ac577a6cb44e83c11abd5aba95f56c05ed authored by otakuchiyan on 12 March 2016, 09:05:20 UTC
Fix case issue
Tip revision: de9832a
depending_repos.sh
#!/bin/bash

COMPILESDK_VER="22"
BUILDTOOLS_VER="23.0.1"

if [ ! -e 'libsuperuser' ]; then
    echo '>Clone libsuperuser'
    git clone https://github.com/chainfire/libsuperuser --depth=1
    mv libsuperuser/libsuperuser tmp
    rm -rf libsuperuser
    mv tmp libsuperuser
    cp ./build.gradle.libsuperuser ./libsuperuser/build.gradle
fi
back to top