Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit a1799fc

Browse files
authored
Fix rake whatsnew (#8657)
1 parent 35241e6 commit a1799fc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Rakefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,15 +74,14 @@ task :whatsnew do
7474
generated_file = 'tmp/whats-new.yml'
7575
current_data = YAML.load_file current_file
7676
last_update = current_data['updated']
77-
7877
print 'Generating data for the What\'s New digest: $ '.magenta
7978

8079
# Generate tmp/whats-new.yml
8180
report =
8281
if since.nil? || since.empty?
8382
`bin/whatsup_github since '#{last_update}'`
8483
elsif since.is_a? String
85-
`bin/whatsup_github since #{since}`
84+
`bin/whatsup_github since '#{since}'`
8685
else
8786
abort 'The "since" argument must be a string. Example: "jul 4"'
8887
end

0 commit comments

Comments
 (0)