diff --git a/.pytool/Plugin/SpellCheck/SpellCheck.py b/.pytool/Plugin/SpellCheck/SpellCheck.py index c12ce6d4f5..7a4178c5d5 100644 --- a/.pytool/Plugin/SpellCheck/SpellCheck.py +++ b/.pytool/Plugin/SpellCheck/SpellCheck.py @@ -212,7 +212,7 @@ def RunBuildPlugin(self, packagename, Edk2pathObj, pkgconfig, environment, PLM, def _check_spelling(self, abs_file_to_check: str, abs_config_file_to_use: str) -> []: output = StringIO() ret = RunCmd( - "cspell", f"--config {abs_config_file_to_use} {abs_file_to_check}", outstream=output) + "cspell", f"--config {abs_config_file_to_use} --no-color {abs_file_to_check}", outstream=output) if ret == 0: return [] else: