]> git.openstreetmap.org Git - chef.git/blobdiff - hooks/pre-commit
nominatim: add boost-python for pyosmium
[chef.git] / hooks / pre-commit
index 4ad3c1576fb8298b923fe4db9d9d5858640b0da6..7c7655e5db50430912c67d267acc583bbcb1d86d 100755 (executable)
@@ -12,7 +12,7 @@ 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?