Added makezip.py
Quickly create zip for publishing
This commit is contained in:
parent
2374774416
commit
f43cff5194
1
.gitignore
vendored
1
.gitignore
vendored
@ -0,0 +1 @@
|
||||
iv-pdhealth.zip
|
11
makezip.py
Normal file
11
makezip.py
Normal 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()
|
Loading…
Reference in New Issue
Block a user