e410bbb69e
* Use secure protocol when fetching prebuilt APKs to avoid a MITM attack that could send a malicious APK instead. Change-Id: If9dfc8bdc6f5a8ac360f40fe3fb423455082d224
10 lines
328 B
Plaintext
Executable File
10 lines
328 B
Plaintext
Executable File
|
|
BASEDIR=`dirname $0`
|
|
|
|
mkdir -p $BASEDIR/proprietary
|
|
|
|
# Get Android Terminal Emulator (we use a prebuilt so it can update from the Market)
|
|
curl -L -o $BASEDIR/proprietary/Term.apk -O -L https://jackpal.github.com/Android-Terminal-Emulator/downloads/Term.apk
|
|
unzip -o -d $BASEDIR/proprietary $BASEDIR/proprietary/Term.apk lib/*
|
|
|