From ff364901e13b6c5e8ee3592b4cbaf58d5e7ef3d4 Mon Sep 17 00:00:00 2001 From: Samuel Attard Date: Fri, 28 Sep 2018 16:48:09 +1000 Subject: [PATCH] chore: use get_electron_branding instead of electron_gyp in the symbol zip generator --- script/zip-symbols.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/zip-symbols.py b/script/zip-symbols.py index 7201fcf0629a..be6433130c68 100755 --- a/script/zip-symbols.py +++ b/script/zip-symbols.py @@ -4,10 +4,10 @@ import sys from lib.config import PLATFORM, get_target_arch from lib.util import scoped_cwd, get_electron_version, make_zip, \ - electron_gyp, get_out_dir + get_electron_branding, get_out_dir ELECTRON_VERSION = get_electron_version() -PROJECT_NAME = electron_gyp()['project_name%'] +PROJECT_NAME = get_electron_branding()['project_name'] OUT_DIR = get_out_dir() def main():