Non-generated build files fully retired

This commit is contained in:
Bruce Eckel 2015-04-29 21:01:37 -07:00
parent 7ac83a1c8c
commit e2e023200e
27 changed files with 6 additions and 0 deletions

6
rename.py Normal file
View File

@ -0,0 +1,6 @@
#! py -3
from pathlib import Path
for old in Path('.').glob("**/oldbuild (1).xml"):
print(old)
old.rename(old.parent / "oldbuild.xml")