socializer/scripts/prepare_zipversion.py

17 lines
393 B
Python
Raw Normal View History

#! /usr/bin/env python# -*- coding: iso-8859-1 -*-
import shutil
import os
2019-01-02 03:56:12 +01:00
import sys
def create_archive():
os.chdir("..\\src")
2019-01-02 03:56:12 +01:00
print("Creating zip archive...")
folder = "socializer.dist"
2019-01-02 03:56:12 +01:00
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()