From beb48f193f4d5e095c9f09411ae35a4980bd5897 Mon Sep 17 00:00:00 2001 From: Michael Savigny Date: Thu, 14 Mar 2024 01:11:11 +0000 Subject: [PATCH] Minor change to -h output for autoninja. Notes that --offline is for disabling remote execution in general not just for goma. Bug: b/329317224 Change-Id: I5538c9fac6d5161e98e1d156e61c512c6a1e8496 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/5370094 Auto-Submit: Michael Savigny Reviewed-by: Fumitoshi Ukai Commit-Queue: Fumitoshi Ukai --- autoninja.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoninja.py b/autoninja.py index d00b28358..06921b8f6 100755 --- a/autoninja.py +++ b/autoninja.py @@ -220,7 +220,7 @@ def main(args): offline = True elif arg == "-h": print( - "autoninja: Use -o/--offline to temporary disable goma.", + "autoninja: Use -o/--offline to temporary disable remote execution.", file=sys.stderr, ) print(file=sys.stderr)