0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

SERVER-42498 Fix output messages from clang_format.py.

They should refer to the correct binary name.
This commit is contained in:
ADAM David Alan Martin 2019-08-14 20:26:27 -04:00
parent b73a7d6ab9
commit a810b1a727
No known key found for this signature in database
GPG Key ID: D860F95FD1BEEA08

View File

@ -218,7 +218,7 @@ class ClangFormat(object):
elif sys.platform == "darwin":
get_clang_format_from_darwin_cache(self.path)
else:
print("ERROR: clang-format.py does not support downloading clang-format " +
print("ERROR: clang_format.py does not support downloading clang-format " +
" on this platform, please install clang-format " + CLANG_FORMAT_VERSION)
# Validate we have the correct version
@ -264,7 +264,7 @@ class ClangFormat(object):
# Take a lock to ensure diffs do not get mixed when printed to the screen
with self.print_lock:
print("ERROR: Found diff for " + file_name)
print("To fix formatting errors, run `buildscripts/clang-format.py format`")
print("To fix formatting errors, run `buildscripts/clang_format.py format`")
for line in result:
print(line.rstrip())
@ -542,7 +542,7 @@ def reformat_branch( # pylint: disable=too-many-branches,too-many-locals,too-ma
def usage():
"""Print usage."""
print(
"clang-format.py supports 6 commands [ lint, lint-all, lint-patch, format, format-my, reformat-branch]."
"clang_format.py supports 6 commands (lint, lint-all, lint-patch, format, format-my, reformat-branch)."
)
print("\nformat-my <origin branch>")
print(" <origin branch> - upstream branch to compare against")