Add testing for arm, arm64 and ia32 linux builds

This commit is contained in:
John Kleinschmidt 2017-12-13 14:42:01 -05:00
parent a6228b97cd
commit 06481b5630
6 changed files with 206 additions and 2 deletions

11
script/get-version.py Executable file
View file

@ -0,0 +1,11 @@
#!/usr/bin/env python
import sys
from lib.util import get_electron_version
def main():
print get_electron_version()
if __name__ == '__main__':
sys.exit(main())