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

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_push_if_needed ${APP_ARGS[@]}
exit $?