mirror of
https://github.com/thead-yocto-mirror/skia
synced 2026-07-09 01:25:01 +02:00
11 lines
263 B
Bash
Executable File
11 lines
263 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copy the contents of a directory from a device to the host.
|
|
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
source $SCRIPT_DIR/utils/android_setup.sh
|
|
source $SCRIPT_DIR/utils/setup_adb.sh
|
|
|
|
adb_pull_if_needed ${APP_ARGS[@]}
|
|
exit $?
|