Skip to content

Commit 7175059

Browse files
committed
Removed creation of "failures," gen all build.xml
1 parent d5cf2b7 commit 7175059

1 file changed

Lines changed: 6 additions & 7 deletions

File tree

tools/Examples.py

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,9 @@
2626
<import file="../Ant-Common.xml"/>
2727
2828
<target name="run" description="Compile and run" depends="build">
29-
<touch file="failures"/>
3029
"""
3130

3231
endBuild = """\
33-
<delete file="failures"/>
3432
</target>
3533
3634
</project>
@@ -166,11 +164,12 @@ def destDirs(pattern="**"):
166164

167165

168166
def copySupplementalFilesFromGithub():
169-
for common in githubDirs().intersection(destDirs()):
170-
print("->", common)
171-
build = github / common / "build.xml"
172-
target = destination / common
173-
shutil.copy(str(build), str(target))
167+
# for common in githubDirs().intersection(destDirs()):
168+
# print("->", common)
169+
# build = github / common / "build.xml"
170+
# target = destination / common
171+
# shutil.copy(str(build), str(target))
172+
shutil.copy(str(github / "build.xml"), str(destination))
174173
shutil.copy(str(github / "Ant-Common.xml"), str(destination))
175174
for face in (github / "gui").glob("*.gif"):
176175
shutil.copy(str(face), str(destination / "gui"))

0 commit comments

Comments
 (0)