diff options
Diffstat (limited to 'compile.sh')
-rwxr-xr-x | compile.sh | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/compile.sh b/compile.sh deleted file mode 100755 index 32d36267..00000000 --- a/compile.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash -libopenvpn_so_files=`find libs -name libopenvpn.so | wc --lines` -libopvnutil_so_files=`find libs -name libopvpnutil.so | wc --lines` -minivpn_files=`find libs -name minivpn | wc --lines` -if [ $libopenvpn_so_files -lt 4 ] || [ $libopvnutil_so_files -lt 4 ] || [ $minivpn_files -lt 4 ]; -then - ./compile-native-openvpn.sh -fi - -android update project --path . --name "Bitmask for Android" --target android-17 -ant debug - -cd tests/ && ./compile.sh && cd .. |