From: Lunar Date: Fri, 31 May 2013 21:24:03 +0000 (+0200) Subject: Remove useless code in pre-commit hook X-Git-Url: https://nos-oignons.net/gitweb/gestion-adh.git/commitdiff_plain/fa119a8cefd38beb5c7b76adffa996a6af7fb006 Remove useless code in pre-commit hook --- diff --git a/bin/pre-commit-hook b/bin/pre-commit-hook index 317e5c5..0b46db8 100755 --- a/bin/pre-commit-hook +++ b/bin/pre-commit-hook @@ -38,13 +38,11 @@ def is_valid_subscription_file?(file) end end -modified = [] IO.popen(['git', 'diff-index', '--cached', '--name-status', against]) do |f| f.readlines.each do |line| status, file = line.strip.split("\t", 2) # Has file been added or modified? if ['A', 'M'].include?(status) - modified << file next unless file.start_with?("#{SUBSCRIPTIONS_ROOT}/") if !is_valid_subscription_file?(file) $stderr.puts "Désolé : #{file} n'a pas le bon format !"