Files
skia/platform_tools/android/bin/adb_push_if_needed
2022-09-13 14:31:24 +08:00

11 lines
263 B
Bash
Executable File

#!/bin/bash
#
# Copy the contents of a directory from the host to a device.
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source $SCRIPT_DIR/utils/android_setup.sh
source $SCRIPT_DIR/utils/setup_adb.sh
adb_push_if_needed ${APP_ARGS[@]}
exit $?