projects
/
gestion-adh.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Last step in pre-commit hook implementation
[gestion-adh.git]
/
bin
/
pre-commit-hook
diff --git
a/bin/pre-commit-hook
b/bin/pre-commit-hook
index fcfb3e91a8fd981c7e970027b5b9507244bd093f..317e5c55700322c4a3ffc3fea3c9620701d6bea4 100755
(executable)
--- a/
bin/pre-commit-hook
+++ b/
bin/pre-commit-hook
@@
-8,6
+8,8
@@
Bundler.setup
require 'safe_yaml'
SafeYAML::OPTIONS[:default_mode] = :safe
require 'safe_yaml'
SafeYAML::OPTIONS[:default_mode] = :safe
+SUBSCRIPTIONS_ROOT = 'Membres'
+
if system('git rev-parse --quiet --verify HEAD >/dev/null')
against = 'HEAD'
else
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
# 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
if !is_valid_subscription_file?(file)
$stderr.puts "Désolé : #{file} n'a pas le bon format !"
exit 1