From d7cd02f7b77fae4f6357f3140ad1778af35ec585 Mon Sep 17 00:00:00 2001 From: Justin Yun Date: Mon, 19 Jun 2023 17:56:26 +0900 Subject: [PATCH] Update ab tool path Bug: 287915808 Test: utils.get_latest_vndk_bid('android13-gsi') Change-Id: If5fe7f0e972cc465fd126b7b3ffa6f0234898830 --- vndk/snapshot/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vndk/snapshot/utils.py b/vndk/snapshot/utils.py index 607d0d211..059f47718 100644 --- a/vndk/snapshot/utils.py +++ b/vndk/snapshot/utils.py @@ -181,7 +181,7 @@ def get_latest_vndk_bid(branch): Returns: string: bid of the latest green build """ - ab_tool_path = '/google/data/ro/projects/android/ab' + ab_tool_path = '/google/bin/releases/android/ab/ab.par' cmd = [ ab_tool_path, 'lkgb', '--branch', branch, '--target', 'vndk' ]