X-Git-Url: https://nos-oignons.net/gitweb/gestion-adh.git/blobdiff_plain/41e506595f4d41915f59f93e1f11c926cc3bfae1..fcfec54ac07c989195fa9036cee2d5c48eec8337:/bin/pre-commit-hook diff --git a/bin/pre-commit-hook b/bin/pre-commit-hook index fcfb3e9..317e5c5 100755 --- a/bin/pre-commit-hook +++ b/bin/pre-commit-hook @@ -8,6 +8,8 @@ Bundler.setup require 'safe_yaml' SafeYAML::OPTIONS[:default_mode] = :safe +SUBSCRIPTIONS_ROOT = 'Membres' + if system('git rev-parse --quiet --verify HEAD >/dev/null') against = 'HEAD' else @@ -43,6 +45,7 @@ IO.popen(['git', 'diff-index', '--cached', '--name-status', against]) do |f| # 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 !" exit 1