From dab3877b68de8470372fbb2c7f2c7a751a8cdfeb Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Thu, 16 Dec 2021 09:21:59 -0500 Subject: [PATCH] dev: update check_manifest list and sort output --- rakelib/check-manifest.rake | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/rakelib/check-manifest.rake b/rakelib/check-manifest.rake index adc14772d4..2fc03d2f27 100644 --- a/rakelib/check-manifest.rake +++ b/rakelib/check-manifest.rake @@ -18,6 +18,7 @@ task :check_manifest do coverage doc gems + misc nokogumbo-import oci-images patches @@ -38,6 +39,8 @@ task :check_manifest do .gitignore .gitmodules .yardopts + .rubocop.yml + .rubocop_todo.yml CHANGELOG.md CODE_OF_CONDUCT.md CONTRIBUTING.md @@ -76,10 +79,10 @@ task :check_manifest do unless missing_files.empty? puts "missing:" - missing_files.each { |f| puts "- #{f}" } + missing_files.sort.each { |f| puts "- #{f}" } end unless extra_files.empty? puts "unexpected:" - extra_files.each { |f| puts "+ #{f}" } + extra_files.sort.each { |f| puts "+ #{f}" } end end