diff options
author | cyBerta <cyberta@riseup.net> | 2018-02-06 00:05:45 +0100 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2018-02-06 00:05:45 +0100 |
commit | ea44f258530c9af43f43985ff6bc3d8da2918c0c (patch) | |
tree | f619955070736e08bc1614af3231c5e28700ebae /build_deps.sh | |
parent | 564175b5ea98f2d4e903c63401bd3c924a799a7c (diff) |
#8832 clean up
Diffstat (limited to 'build_deps.sh')
-rwxr-xr-x | build_deps.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/build_deps.sh b/build_deps.sh new file mode 100755 index 00000000..d9bcb265 --- /dev/null +++ b/build_deps.sh @@ -0,0 +1,22 @@ +#!/bin/bash + +function quit { + echo "Task failed. Exit value: $?." + exit 1 +} + + +DIR_OVPNASSETS=./ics-openvpn/main/build/ovpnassets +DIR_OVPNLIBS=./ics-openvpn/main/build/intermediates/cmake/noovpn3/release/obj +# init +# look for empty dir + +if [[ $(ls -A ${DIR_OVPNASSETS}) && $(ls -A ${DIR_OVPNLIBS}) ]] +then + echo "Dirty build: skipped externalNativeBuild - reusing existing libs" +else + echo "Clean build: starting externalNativeBuild" + cd ./ics-openvpn || quit + ./gradlew clean main:externalNativeBuildCleanNoovpn3Release main:externalNativeBuildNoovpn3Release || quit + cd .. +fi
\ No newline at end of file |