make the dist dir if needed

This commit is contained in:
Shawn Hoffman 2020-08-15 21:14:40 -07:00
parent 94db781ca5
commit 2e5f2fd403

View File

@ -119,6 +119,7 @@ if __name__ == "__main__":
exit(1)
output_path = os.path.join(basedir, "dist", config["name"]+"_"+release)
os.makedirs(output_path, exist_ok=True)
os.putenv("RELEASE", release)
os.putenv("OUTNAME", output_path)