From 88fa3cdd90ec3de6710feb2a3bd5fe9d1175790f Mon Sep 17 00:00:00 2001 From: Mauricio Alvarez Leon <65101411+BBBmau@users.noreply.github.com> Date: Thu, 6 Mar 2025 10:18:12 -0800 Subject: [PATCH] `op adb`: change directory to match ssh (#34770) Update adb_shell.sh --- tools/adb_shell.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/adb_shell.sh b/tools/adb_shell.sh index 985c5c072..f757f7d4d 100755 --- a/tools/adb_shell.sh +++ b/tools/adb_shell.sh @@ -1,7 +1,7 @@ #!/usr/bin/env expect spawn adb shell expect "#" -send "cd usr/comma\r" +send "cd data/openpilot\r" send "export TERM=xterm-256color\r" send "su comma\r" send "clear\r"