From a1799fc145b6b5364c4ac7766f057c2c9e270125 Mon Sep 17 00:00:00 2001 From: Dmitry Shevtsov <12731225+dshevtsov@users.noreply.github.com> Date: Tue, 9 Feb 2021 12:20:05 -0600 Subject: [PATCH] Fix rake whatsnew (#8657) --- Rakefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index 3c65d2827c6..4220e23cd0d 100644 --- a/Rakefile +++ b/Rakefile @@ -74,7 +74,6 @@ task :whatsnew do generated_file = 'tmp/whats-new.yml' current_data = YAML.load_file current_file last_update = current_data['updated'] - print 'Generating data for the What\'s New digest: $ '.magenta # Generate tmp/whats-new.yml @@ -82,7 +81,7 @@ task :whatsnew do if since.nil? || since.empty? `bin/whatsup_github since '#{last_update}'` elsif since.is_a? String - `bin/whatsup_github since #{since}` + `bin/whatsup_github since '#{since}'` else abort 'The "since" argument must be a string. Example: "jul 4"' end