Skip to content

Commit

Permalink
Item13135: Don't gen ignore lines for comments
Browse files Browse the repository at this point in the history
And fix the TinyMCE .gitignore file.
  • Loading branch information
gac410 committed Apr 10, 2015
1 parent 2d1a0ea commit 2f2901f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 287 deletions.
Expand Up @@ -73,6 +73,7 @@ sub target_gitignore {
}
for ( sort keys %{ $collector->{ignore} } )
{ # Ignore any file in MANIFEST that is not known to git.
next if ( $_ =~ m/^#/ ); # Skip any comments in the MANIFEST
next if ( $_ =~ m/\.gz$/ ); # .gz files covered by wildcard
next if ( $_ eq '!noci' ); # Skip the !noci record
print '/' . $_ . "\n";
Expand Down

0 comments on commit 2f2901f

Please sign in to comment.