1 # Copyright 2010 Galen Charlton
3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 2 of the License, or (at your option) any later
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License along
15 # with Koha; if not, write to the Free Software Foundation, Inc.,
16 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
32 return if $file =~ /\.(ico|jpg|gif|ogg|pdf|png|psd|swf|zip|.*\~)$/;
33 return unless -f $file;
35 my @name_parts = File::Spec->splitpath($file);
36 my %dirs = map { $_ => 1 } File::Spec->splitdir($name_parts[1]);
37 return if exists $dirs{'.git'};
39 my $fh = IO::File->new($file, 'r');
44 if (/^<<<<<</ or /^>>>>>>/) {
45 # could check for ^=====, but that's often used in text files
52 fail("$file contains merge conflict markers in line $line");
54 pass("$file has no merge conflict markers");
57 }, File::Spec->curdir());