From c8f71d9a88c96708e1ea223f38d1aad5f8fbe251 Mon Sep 17 00:00:00 2001 From: HappyZ Date: Tue, 4 Jun 2019 15:54:03 -0500 Subject: [PATCH] Update init_vacuum.sh --- init_vacuum.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/init_vacuum.sh b/init_vacuum.sh index 4dd1661..145cad4 100755 --- a/init_vacuum.sh +++ b/init_vacuum.sh @@ -20,5 +20,11 @@ scp ./get_loc_est.py ${REMOTE_EXP_FP} echo "Install necessary packages" ${REMOTE_CMD} apt update ${REMOTE_CMD} apt --yes install python3-minimal +${REMOTE_CMD} apt --yes install wget +${REMOTE_CMD} apt --yes install unzip + +echo "Install adb" +${REMOTE_CMD} wget -O ${REMOTE_EXP_FP}/adbs.zip https://dl.google.com/android/repository/platform-tools-latest-linux.zip +${REMOTE_CMD} unzip ${REMOTE_EXP_FP}/adbs.zip -d ${REMOTE_EXP_FP} echo "Done!"