X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/ae2ef9ff4f0542d2bb2f8bbe6d6b6f27ec5c55f8..753afbddc313cd84b89dd2300d621495f2668036:/hooks/pre-commit diff --git a/hooks/pre-commit b/hooks/pre-commit index de3142ea0..57c23a35a 100755 --- a/hooks/pre-commit +++ b/hooks/pre-commit @@ -3,11 +3,13 @@ ok = true if IO.popen(["git", "ls-files", "--unmerged"]).read.empty? - need_stash = IO.popen(%w(git diff)).read.length > 0 + need_stash = !IO.popen(%w(git diff)).read.empty? system("git", "stash", "save", "--keep-index", "--quiet") if need_stash - files = IO.popen(["git", "diff", "--staged", "--name-only"]).readlines.map(&:chomp) + files = IO.popen(["git", "diff", "--staged", "--name-status"]).map do |line| + Regexp.last_match(1) if line =~ /^[AM]\s+(.*)$/ + end.compact ruby_files = files.select do |file| file =~ /\.rb$/ || `file --brief --mime-type #{file}` == "text/x-ruby\n"