aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/skpbench/_adb_path.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/skpbench/_adb_path.py')
-rw-r--r--tools/skpbench/_adb_path.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/skpbench/_adb_path.py b/tools/skpbench/_adb_path.py
index 4d8bce4425..dc23fc5895 100644
--- a/tools/skpbench/_adb_path.py
+++ b/tools/skpbench/_adb_path.py
@@ -9,9 +9,9 @@ import subprocess
__ADB = None
-def init(device_serial):
+def init(device_serial, adb_binary):
global __ADB
- __ADB = Adb(device_serial)
+ __ADB = Adb(device_serial, adb_binary)
def join(*pathnames):
return '/'.join(pathnames)