mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-13 14:32:34 +00:00
7144e756e5
early on any error + anticipate that some tools can't be installed by now, but we still want the test to return success to satisfy travis-ci
11 lines
381 B
Bash
Executable file
11 lines
381 B
Bash
Executable file
#!/bin/bash -ex
|
|
|
|
[ -e android-sdk_r24.4.1-linux.tgz ] || wget https://dl.google.com/android/android-sdk_r24.4.1-linux.tgz
|
|
[ -e android-sdk-linux ] || tar xfz android-sdk_r24.4.1-linux.tgz
|
|
|
|
mkdir -p bin
|
|
cd android-sdk-linux
|
|
python -c 'for i in range(10): print "y"+"\n"*1024' | tools/android update sdk --no-ui
|
|
|
|
cd ../bin
|
|
ln -sf ../android-sdk-linux/platform-tools/{adb,fastboot} .
|