mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
15 lines
254 B
Bash
Executable File
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
|
|
|