Merge "Fix test failures due to binaries not found in PATH"

This commit is contained in:
Kelvin Zhang 2021-02-02 22:21:15 +00:00 committed by Gerrit Code Review
commit 00db3859e7
1 changed files with 1 additions and 1 deletions

View File

@ -545,7 +545,7 @@ def GetApexInfoFromTargetFiles(input_file):
debugfs_path = os.path.join(OPTIONS.search_path, "bin", "debugfs_static")
deapexer = 'deapexer'
if OPTIONS.search_path:
deapexer_path = os.path.join(OPTIONS.search_path, "deapexer")
deapexer_path = os.path.join(OPTIONS.search_path, "bin", "deapexer")
if os.path.isfile(deapexer_path):
deapexer = deapexer_path
for apex_filename in os.listdir(target_dir):