Modify script to build zipfiles based in python versions

This commit is contained in:
Manuel Cortez 2018-12-29 09:09:15 -06:00
parent 4e88686671
commit c700333642

View File

@ -1,11 +1,16 @@
#! /usr/bin/env python# -*- coding: iso-8859-1 -*- #! /usr/bin/env python# -*- coding: iso-8859-1 -*-
import shutil import shutil
import os import os
import sys
def create_archive(): def create_archive():
os.chdir("..\\src") os.chdir("..\\src")
print("Creating zip archive...") print("Creating zip archive...")
shutil.make_archive("music_dl", "zip", "dist/main") if sys.version[0] == "3":
folder = "dist/main"
else:
folder = "dist"
shutil.make_archive("music_dl", "zip", folder)
if os.path.exists("dist"): if os.path.exists("dist"):
shutil.rmtree("dist") shutil.rmtree("dist")
if os.path.exists("build"): if os.path.exists("build"):