]> nos-oignons.net Git - gestion-adh.git/blobdiff - bin/pre-commit-hook
Only send reminders when the time has really come
[gestion-adh.git] / bin / pre-commit-hook
index 4571599b499014fa351c2c32c044dddee9b323f3..2bd3c77080d0438100ca804c34e4db631ec636d7 100755 (executable)
@@ -5,23 +5,6 @@ require 'rubygems'
 require 'bundler'
 Bundler.setup
 
-require 'nos_oignons/git'
-require 'nos_oignons/subscriptions'
+require 'nos_oignons'
 
-if system('git rev-parse --quiet --verify HEAD >/dev/null')
-  against = 'HEAD'
-else
-  # Initial commit: diff against an empty tree object
-  against = '4b825dc642cb6eb9a060e54bf8d69288fbee4904'
-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)
-      $stderr.puts "Désolé : #{file} n'a pas le bon format !"
-      exit 1
-    end
-  end
-end
+NosOignons.pre_commit_hook!