Fix reclientreport after functions moved to reclient_helper

Bug: b/277763387
Change-Id: Ib0705b5f8e676df97a058e0d1fa7699e64a5ca1c
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/4454887
Reviewed-by: Anas Sulaiman <mrahs@google.com>
Auto-Submit: Ben Segall <bentekkie@google.com>
Commit-Queue: Anas Sulaiman <mrahs@google.com>
This commit is contained in:
Ben Segall
2023-04-20 13:29:36 +00:00
committed by LUCI CQ
parent 607284d719
commit 6b62f42578

View File

@@ -14,7 +14,7 @@ import os
import subprocess
import sys
import ninja_reclient
import reclient_helper
def main():
@@ -31,8 +31,8 @@ def main():
if extras:
args.args = extras + args.args
ninja_reclient.set_reproxy_path_flags(args.ninja_out, make_dirs=False)
reclient_bin_dir = ninja_reclient.find_reclient_bin_dir()
reclient_helper.set_reproxy_path_flags(args.ninja_out, make_dirs=False)
reclient_bin_dir = reclient_helper.find_reclient_bin_dir()
code = subprocess.call([os.path.join(reclient_bin_dir, 'reclientreport')] +
args.args)
if code != 0: