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