This commit is contained in:
4
build.py
4
build.py
@ -85,6 +85,10 @@ def sha1_of_file(filepath):
|
||||
|
||||
if __name__ == "__main__":
|
||||
versions=getVersions()
|
||||
zipFiles = [name for name in os.listdir(current_dir) if os.path.isfile(os.path.join(current_dir, name)) and name.endswith(".zip") ]
|
||||
for zipFile in zipFiles:
|
||||
os.remove(os.path.join(current_dir, zipFile))
|
||||
|
||||
with tempfile.TemporaryDirectory() as tmpdirname:
|
||||
for version in versions:
|
||||
buildPack(tmpdirname, version)
|
||||
|
||||
Reference in New Issue
Block a user