mirror of
https://github.com/electron/electron.git
synced 2026-01-10 07:58:08 -05:00
* build: [gn] add distributable zip target * build: update the CircleCI config - enable debug and testing builds on Mac - run Mac release builds nightly - run test for Mac release builds - use shared build machines configs * Add resources dir to zip on non mac platforms.
12 lines
170 B
Python
12 lines
170 B
Python
import sys
|
|
|
|
|
|
def main(argv):
|
|
out_file, version = argv
|
|
with open(out_file, 'w') as f:
|
|
f.write(version)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(main(sys.argv[1:]))
|