7 lines
117 B
Python
7 lines
117 B
Python
|
# Zip src/solstice
|
||
|
import shutil
|
||
|
import os
|
||
|
|
||
|
os.remove('solstice.zip')
|
||
|
shutil.make_archive('solstice', 'zip', 'src/')
|