tools: pass args to op adb

This commit is contained in:
Adeeb Shihadeh
2025-10-20 16:14:02 -07:00
parent 8752093801
commit 8720e5d712
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -284,7 +284,7 @@ function op_venv() {
function op_adb() {
op_before_cmd
op_run_command tools/scripts/adb_ssh.sh
op_run_command tools/scripts/adb_ssh.sh "$@"
}
function op_ssh() {
+1 -1
View File
@@ -4,4 +4,4 @@ set -e
# this is a little nicer than "adb shell" since
# "adb shell" doesn't do full terminal emulation
adb forward tcp:2222 tcp:22
ssh comma@localhost -p 2222
ssh comma@localhost -p 2222 "$@"