From be1be00d882441238a67e7f3d7aef700005ad4a0 Mon Sep 17 00:00:00 2001 From: Ben Gotow Date: Mon, 7 Nov 2016 09:40:53 -0800 Subject: [PATCH] =?UTF-8?q?fix(build):=20Don=E2=80=99t=20dedupe=20when=20i?= =?UTF-8?q?nstalling=20mac-notififer?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- script/bootstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/bootstrap b/script/bootstrap index 82f4b1e11..27358a7bc 100755 --- a/script/bootstrap +++ b/script/bootstrap @@ -31,7 +31,7 @@ function makeNodeMacNotifierCommand() { // Use our local version of npm (npm 3x) to build sqlite var npmPath = '"' + path.resolve(__dirname, '..', 'build', 'node_modules', '.bin', 'npm') + '"'; - return npmPath + " install node-mac-notifier --ignore-scripts && cd node_modules/node-mac-notifier && "+nodeGypPath+" configure rebuild --msvs_version=2013 --target="+targetElectronVersion+" --arch="+targetArch+" --target_platform="+targetPlatform+" --dist-url=https://atom.io/download/atom-shell" + return npmPath + " install node-mac-notifier --legacy-bundling --ignore-scripts && cd node_modules/node-mac-notifier && "+nodeGypPath+" configure rebuild --msvs_version=2013 --target="+targetElectronVersion+" --arch="+targetArch+" --target_platform="+targetPlatform+" --dist-url=https://atom.io/download/atom-shell" }