https://github.com/otakuchiyan/DNSman
Raw File
Tip revision: 1945886793b13e90bef3242a5311e466091f51dc authored by otakuchiyan on 28 January 2016, 15:41:55 UTC
Fix script bug
Tip revision: 1945886
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