atom_shell -> electron

This commit is contained in:
Kevin Sawicki 2016-05-24 10:27:46 -07:00
parent 7e209dd982
commit 94c8b0e1b1
8 changed files with 60 additions and 60 deletions

View file

@ -4,7 +4,7 @@ import os
import re
import sys
from lib.util import execute, get_atom_shell_version, parse_version, scoped_cwd
from lib.util import execute, get_electron_version, parse_version, scoped_cwd
SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
@ -18,7 +18,7 @@ def main():
option = sys.argv[1]
increments = ['major', 'minor', 'patch', 'build']
if option in increments:
version = get_atom_shell_version()
version = get_electron_version()
versions = parse_version(version.split('-')[0])
versions = increase_version(versions, increments.index(option))
else: