mirror of https://github.com/thesofproject/sof.git
tools: sof-ri-info: use colors for terminal output only
Do not use colors if stdout is not a tty. Signed-off-by: Marcin Maka <marcin.maka@linux.intel.com>
This commit is contained in:
parent
e1efef73f3
commit
4b7523c8c9
|
@ -1013,7 +1013,11 @@ class FwBin(Component):
|
|||
def main(args):
|
||||
""" main function
|
||||
"""
|
||||
Attribute.no_colors = args.no_colors
|
||||
if sys.stdout.isatty():
|
||||
Attribute.no_colors = args.no_colors
|
||||
else:
|
||||
Attribute.no_colors = True
|
||||
|
||||
Attribute.full_bytes = args.full_bytes
|
||||
|
||||
fw_bin = parse_fw_bin(args.sof_ri_path, args.verbose, not args.headers)
|
||||
|
|
Loading…
Reference in New Issue