X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/ec1ecc81ad6c862db39f4bfd0fd830f44909b61a..d25811d35406b9247165dd8f2e91acb8594e286b:/hooks/pre-commit diff --git a/hooks/pre-commit b/hooks/pre-commit index 60d665932..449a8c6f2 100755 --- a/hooks/pre-commit +++ b/hooks/pre-commit @@ -1,4 +1,4 @@ -#!/usr/bin/ruby +#!/usr/bin/env ruby ok = true @@ -15,11 +15,7 @@ if IO.popen(["git", "ls-files", "--unmerged"]).read.empty? file =~ /\.rb$/ || (file !~ /\.erb$/ && %x(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", *cookbooks) unless cookbooks.empty? + ok &&= system("bundle", "exec", "cookstyle", *ruby_files) unless ruby_files.empty? system("git", "stash", "pop", "--quiet") if need_stash else