Added makezip.py

Quickly create zip for publishing
This commit is contained in:
Fierelier 2018-05-19 14:08:40 +02:00
parent 2374774416
commit f43cff5194
2 changed files with 12 additions and 0 deletions

1
.gitignore vendored
View File

@ -0,0 +1 @@
iv-pdhealth.zip

11
makezip.py Normal file
View File

@ -0,0 +1,11 @@
import os
import zipfile
def createZip():
os.chdir(os.path.dirname(os.path.realpath(__file__)))
zip = zipfile.ZipFile("iv-pdhealth.zip","w",zipfile.ZIP_DEFLATED)
zip.write(os.path.join("scripts","paydayHealth.cs"))
zip.write("README.md","readme.txt")
zip.close()
createZip()