Deleted the svn_mime-type application/octet-stream from PCBuild/pcbuild.sln.
Tools/scripts/svneol.py: added the .sln and .vcproj extensions because these are text files. Ran svneol.py over the source tree.
This commit is contained in:
parent
a16bb0c156
commit
3b9e9ae8a5
|
@ -65,7 +65,7 @@ def proplist(root, fn):
|
|||
f.close()
|
||||
return result
|
||||
|
||||
possible_text_file = re.compile(r"\.([hc]|py|txt)$").search
|
||||
possible_text_file = re.compile(r"\.([hc]|py|txt|sln|vcproj)$").search
|
||||
|
||||
for root, dirs, files in os.walk('.'):
|
||||
if '.svn' in dirs:
|
||||
|
|
Loading…
Reference in New Issue