diff --git a/t/shell-syntax.t b/t/shell-syntax.t index d32435b..988a315 100755 --- a/t/shell-syntax.t +++ b/t/shell-syntax.t @@ -34,6 +34,9 @@ sub checkFile # We don't care about directories return if ( ! -f $file ); + # Finally mercurial files are fine. + return if ( $file =~ /\.hg\// ); + # See if it is a shell script. my $isShell = 0;