aboutsummaryrefslogtreecommitdiffhomepage
path: root/platform_tools/android/bin/adb_pull_if_needed
blob: 6a35902bddfaa9497fbf12584ca968139f01eb21 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
#
# Copy the contents of a directory from a device to the host.

SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
SKIP_TOOLCHAIN_SETUP="true"
source $SCRIPT_DIR/android_setup.sh
source $SCRIPT_DIR/utils/setup_adb.sh

adb_pull_if_needed ${APP_ARGS[@]}
exit $?