Commit 09bd7b18 authored by Rémy Coutable's avatar Rémy Coutable

Merge branch 'allow-ee-file-checks-to-whitelist-dotfiles' into 'master'

Allow the EE file checks to glob and whitelist dotfiles

See merge request gitlab-org/gitlab-ee!12249
parents 7b4fb5e8 1fede4d4
......@@ -28,7 +28,7 @@ new_ee_specific_files_not_at_the_ee_top_level =
status = 0
new_ee_specific_files_not_at_the_ee_top_level.each do |file|
next if WHITELIST.any? { |pattern| Dir.glob(pattern).include?(file) }
next if WHITELIST.any? { |pattern| Dir.glob(pattern, File::FNM_DOTMATCH).include?(file) }
puts
puts "* 💥 #{file} is EE-specific and should be moved to ee/#{file}: 💥"
......
......@@ -24,7 +24,7 @@ offenses = updated_numstat.select do |file, updated_delta|
more_lines &&
allow_prepend_line &&
!WHITELIST.any? { |pattern| Dir.glob(pattern).include?(file) }
!WHITELIST.any? { |pattern| Dir.glob(pattern, File::FNM_DOTMATCH).include?(file) }
end
if offenses.empty?
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment