build: replace nightly and dev versions in the release script (#14134)

This commit is contained in:
Samuel Attard 2018-08-16 09:56:24 -07:00 коммит произвёл Shelley Vohr
Родитель d3067cc334
Коммит e2ba01b1fc
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -107,7 +107,7 @@ def increase_version(versions, index):
def update_electron_gyp(version, suffix):
pattern = re.compile(" *'version%' *: *'[0-9.]+(-beta[0-9.]*)?'")
pattern = re.compile(" *'version%' *: *'[0-9.]+(-beta[0-9.]*)?(-dev)?(-nightly[0-9]*)?'")
with open('electron.gyp', 'r') as f:
lines = f.readlines()