Only zip specified files.

This commit is contained in:
Cheng Zhao 2013-08-08 17:13:45 +08:00
parent b0b6214416
commit 47be87fe5f

View file

@ -55,7 +55,7 @@ def create_zip():
safe_unlink(zip_file) safe_unlink(zip_file)
with scoped_cwd(DIST_DIR): with scoped_cwd(DIST_DIR):
files = glob.glob('*') files = ['Atom.app', 'LICENSE', 'version']
subprocess.check_call(['zip', '-r', '-y', zip_file] + files) subprocess.check_call(['zip', '-r', '-y', zip_file] + files)