=== SCons ===

* cvs->svn conversion: handle properly also release/scripts .svn dir (= skip it!)
This commit is contained in:
Nathan Letwory 2007-05-15 12:53:44 +00:00
parent 7ddc602ebf
commit d0c94b83f1

@ -558,8 +558,8 @@ plugtargetlist = []
for tp, tn, tf in os.walk('release/plugins'):
if 'CVS' in tn:
tn.remove('CVS')
if '.svn' in dn:
dn.remove('.svn')
if '.svn' in tn:
tn.remove('.svn')
for f in tf:
pluglist.append(tp+os.sep+f)
plugtargetlist.append(env['BF_INSTALLDIR']+tp[7:]+os.sep+f)