From 30890fca0d336d090a8eee0dbefcb219e8236abd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ro=CC=81bert=20Kiss?= Date: Tue, 7 Nov 2017 23:25:40 +0100 Subject: [PATCH] ci: install yarn on travis osx --- scripts/release.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/release.js b/scripts/release.js index 487ea471..8d3d155c 100644 --- a/scripts/release.js +++ b/scripts/release.js @@ -40,6 +40,10 @@ if (!isReleaseCommit) { process.exit(0) } +if (process.platform === 'darwin') { + exec('brew install yarn --without-node'); +} + exec("yarn add electron-builder"); const path = require('path');