From 52ae35a58982f6b015b61554a8feb98c0f022d84 Mon Sep 17 00:00:00 2001 From: Ashwin Maroli Date: Fri, 21 Jun 2019 15:00:45 +0530 Subject: [PATCH] Disable color output from profile:memory task So that it is easier to parse the plaintext build logs --- rake/profile.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rake/profile.rake b/rake/profile.rake index 9c562d5a..d58c470b 100644 --- a/rake/profile.rake +++ b/rake/profile.rake @@ -39,7 +39,7 @@ namespace :profile do end if ENV["CI"] - report.pretty_print(scale_bytes: true, color_output: true) + report.pretty_print(scale_bytes: true, color_output: false) else FileUtils.mkdir_p("tmp") report_file = File.join("tmp", args.file)