Franck Pommereau

fixed build

Showing 1 changed file with 3 additions and 2 deletions
import os, shutil, glob, subprocess, platform
def clean (dist=False) :
shutil.rmtree("build")
if dist :
if os.path.exists("build") :
shutil.rmtree("build")
if dist and os.path.exists("dist") :
shutil.rmtree("dist")
for path in glob.glob("*.spec") :
os.remove(path)
......