Removed creation of "failures," gen all build.xml
This commit is contained in:
parent
d5cf2b7364
commit
7175059a16
@ -26,11 +26,9 @@ startBuild = """\
|
|||||||
<import file="../Ant-Common.xml"/>
|
<import file="../Ant-Common.xml"/>
|
||||||
|
|
||||||
<target name="run" description="Compile and run" depends="build">
|
<target name="run" description="Compile and run" depends="build">
|
||||||
<touch file="failures"/>
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
endBuild = """\
|
endBuild = """\
|
||||||
<delete file="failures"/>
|
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
@ -166,11 +164,12 @@ def destDirs(pattern="**"):
|
|||||||
|
|
||||||
|
|
||||||
def copySupplementalFilesFromGithub():
|
def copySupplementalFilesFromGithub():
|
||||||
for common in githubDirs().intersection(destDirs()):
|
# for common in githubDirs().intersection(destDirs()):
|
||||||
print("->", common)
|
# print("->", common)
|
||||||
build = github / common / "build.xml"
|
# build = github / common / "build.xml"
|
||||||
target = destination / common
|
# target = destination / common
|
||||||
shutil.copy(str(build), str(target))
|
# shutil.copy(str(build), str(target))
|
||||||
|
shutil.copy(str(github / "build.xml"), str(destination))
|
||||||
shutil.copy(str(github / "Ant-Common.xml"), str(destination))
|
shutil.copy(str(github / "Ant-Common.xml"), str(destination))
|
||||||
for face in (github / "gui").glob("*.gif"):
|
for face in (github / "gui").glob("*.gif"):
|
||||||
shutil.copy(str(face), str(destination / "gui"))
|
shutil.copy(str(face), str(destination / "gui"))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user