diff options
author | Tim Smith <tsmith@chef.io> | 2019-05-06 11:32:38 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2019-05-06 20:27:26 -0700 |
commit | 7dcc2f5a587c83935a98ab7b309d89478972fdc1 (patch) | |
tree | dcaee3974c5e552b167f8cba9b77bd55ff1d6508 /tasks | |
parent | a9263b94022e74ec23c63c44bad2048f080fc202 (diff) | |
download | chef-7dcc2f5a587c83935a98ab7b309d89478972fdc1.tar.gz |
Fix the announce task to use the new Chef Infra Client name
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'tasks')
-rw-r--r-- | tasks/announce.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/announce.rb b/tasks/announce.rb index f8c026f466..c898e80ed8 100644 --- a/tasks/announce.rb +++ b/tasks/announce.rb @@ -41,7 +41,7 @@ class ReleaseAnnouncement end def release_notes_from_file - File.read("RELEASE_NOTES.md").match(/^# Chef Client Release Notes #{@maj_minor}:\n\n(.*)/m)[1] + File.read("RELEASE_NOTES.md").match(/^# Chef Infra Client Release Notes #{@maj_minor}:\n\n(.*)/m)[1] end end |