File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2626 <import file="../Ant-Common.xml"/>
2727
2828 <target name="run" description="Compile and run" depends="build">
29- <touch file="failures"/>
3029"""
3130
3231endBuild = """\
33- <delete file="failures"/>
3432 </target>
3533
3634</project>
@@ -166,11 +164,12 @@ def destDirs(pattern="**"):
166164
167165
168166def 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" ))
You can’t perform that action at this time.
0 commit comments