From fa119a8cefd38beb5c7b76adffa996a6af7fb006 Mon Sep 17 00:00:00 2001 From: Lunar Date: Fri, 31 May 2013 23:24:03 +0200 Subject: [PATCH] Remove useless code in pre-commit hook --- bin/pre-commit-hook | 2 -- 1 file changed, 2 deletions(-) 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 !" -- 2.39.2