X-Git-Url: https://nos-oignons.net/gitweb/gestion-adh.git/blobdiff_plain/deb521438462ac0ed68b3e280c2dd044f8c1934f..f6e098c942a89d011c0875783bd0d0db54e4b67a:/bin/pre-commit-hook diff --git a/bin/pre-commit-hook b/bin/pre-commit-hook index 4571599..921c39c 100755 --- a/bin/pre-commit-hook +++ b/bin/pre-commit-hook @@ -16,10 +16,12 @@ else end IO.popen(['git', 'diff-index', '--cached', '--name-status', against]) do |io| - handle_modified_files(io) do |file| - next unless file.start_with?("#{SUBSCRIPTIONS_ROOT}/") - # Use empty ref to get the index - if !is_valid_subscription_file?('', file) + NosOignons::Git.handle_modified_files(io) do |file| + next unless file.start_with?("#{NosOignons::SUBSCRIPTIONS_ROOT}/") + begin + # Use empty ref to get the index + NosOignons::Subscription.read_from_git('', file) + rescue ArgumentError $stderr.puts "Désolé : #{file} n'a pas le bon format !" exit 1 end