15 lines
351 B
Bash
Executable File
15 lines
351 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# stub -- Android shell not yet implemented
|
|
|
|
cat <<'EOF' >&2
|
|
android select is a stub -- the Android shell has not been built yet.
|
|
|
|
planned behavior:
|
|
- list connected devices (adb devices)
|
|
- list available emulators (emulator -list-avds)
|
|
- write the picked target to $HOME/.acord/android-target
|
|
EOF
|
|
exit 1
|