mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
13 lines
237 B
Bash
Executable File
13 lines
237 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# import all the environment
|
|
source $(dirname $0)/common_env.sh
|
|
|
|
if [ -z "$USE_GLOBAL_ADK" ] ; then
|
|
exec "${ANDROID_BUNDLE}/android-sdk/tools/android" "$@"
|
|
else
|
|
# android should be in global path
|
|
exec android "$@"
|
|
fi
|
|
|