Files
meteor/tools/cordova-scripts/adb.sh
2014-09-29 13:35:44 -07:00

15 lines
254 B
Bash
Executable File

#!/bin/bash
# import all the environment
source "$(dirname "$0")/common_env.sh"
cd "$ORIG_DIR"
if [ -z "$USE_GLOBAL_ADK" ] ; then
exec "${ANDROID_BUNDLE}/android-sdk/platform-tools/adb" "$@"
else
# adb should be in global path
exec adb "$@"
fi