Test a 64 bits build

This commit is contained in:
2019-12-03 10:34:34 -06:00
parent 73f1a9c31f
commit 17bfa4b260
5 changed files with 9 additions and 65 deletions

View File

@@ -6,10 +6,7 @@ import sys
def create_archive():
os.chdir("..\\src")
print("Creating zip archive...")
if sys.version[0] == "3":
folder = "dist/main"
else:
folder = "dist"
folder = "dist"
shutil.make_archive("socializer", "zip", folder)
# if os.path.exists("dist"):
# shutil.rmtree("dist")

View File

@@ -1,17 +0,0 @@
#! /usr/bin/env python# -*- coding: iso-8859-1 -*-
import shutil
import os
import sys
def create_archive():
os.chdir("..\\src")
print("Creating zip archive...")
folder = "dist"
shutil.make_archive("socializer", "zip", folder)
# if os.path.exists("dist"):
# shutil.rmtree("dist")
if os.path.exists("build"):
shutil.rmtree("build")
os.chdir("..\\scripts")
create_archive()