From 45179b2521e35302f2cbd826067eef958a695319 Mon Sep 17 00:00:00 2001 From: Danny Lin Date: Tue, 9 Nov 2021 19:56:11 -0800 Subject: [PATCH] diff-files: Neutralize output headers --- src/commands/diff-files.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/diff-files.ts b/src/commands/diff-files.ts index 39eb640..0c63a1d 100644 --- a/src/commands/diff-files.ts +++ b/src/commands/diff-files.ts @@ -21,7 +21,7 @@ export default class DiffFiles extends Command { let {flags: {all}, args: {sourceRef, sourceNew}} = this.parse(DiffFiles) for (let partition of ALL_PARTITIONS) { - this.log(chalk.bold(chalk.blueBright(partition))) + this.log(chalk.bold(partition)) let filesRef = await listPart(partition, sourceRef) if (filesRef == null) {