X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/73ec2dea6c1a07b08206ec37e588b8a6795e210b..d2d7922d1e3a80d48c78717397236f471a5be506:/hooks/pre-commit diff --git a/hooks/pre-commit b/hooks/pre-commit index 4e45ba7b5..7c7655e5d 100755 --- a/hooks/pre-commit +++ b/hooks/pre-commit @@ -12,14 +12,14 @@ if IO.popen(["git", "ls-files", "--unmerged"]).read.empty? end.compact ruby_files = files.select do |file| - file =~ /\.rb$/ || `file --brief --mime-type #{file}` == "text/x-ruby\n" + file =~ /\.rb$/ || (file !~ /\.erb$/ && `file --brief --mime-type #{file}` == "text/x-ruby\n") end ok &&= system("bundle", "exec", "rubocop", *ruby_files) unless ruby_files.empty? cookbooks = files.grep(%r{(cookbooks/[^/]+)/}) { Regexp.last_match(1) }.uniq - ok &&= system("bundle", "exec", "foodcritic", "-f", "any", *cookbooks) unless cookbooks.empty? + ok &&= system("bundle", "exec", "foodcritic", *cookbooks) unless cookbooks.empty? system("git", "stash", "pop", "--quiet") if need_stash else