Skip to content

Commit

Permalink
don't apply license to AssemblyInfo.cs
Browse files Browse the repository at this point in the history
git-svn-id: http://solrnet.googlecode.com/svn/trunk@201 66c3f25c-543c-0410-ae2e-6f2ca0bd8c61
  • Loading branch information
mausch committed Feb 11, 2009
1 parent 8d2af1b commit 1a3dec9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion InsertLicenseTask.boo
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class InsertLicenseTask:
exts = ("*.cs", "*.boo")
for ext in exts:
for file in Directory.GetFiles(dir, ext):
yield file
yield file if not file.EndsWith("AssemblyInfo.cs")

for subDir in Directory.GetDirectories(dir):
for fname as string in GetFiles(subDir):
Expand Down

0 comments on commit 1a3dec9

Please sign in to comment.