From c2a9b7b1c69619d049f176b42243b9ca13ffb245 Mon Sep 17 00:00:00 2001 From: Thomas Nordquist Date: Mon, 24 Jun 2019 14:07:32 +0200 Subject: [PATCH] Fix faulty electron version detection --- scripts/prepare-release.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/prepare-release.ts b/scripts/prepare-release.ts index bba5d9c..6338666 100644 --- a/scripts/prepare-release.ts +++ b/scripts/prepare-release.ts @@ -28,7 +28,7 @@ async function prepareRelease() { // Clean up await fs.remove('node_modules') - await exec('yarn', ['install', '--production']) + // await exec('yarn', ['install', '--production']) // Do not clean up, electron version detection will fail otherwise await fs.remove(path.join('app', 'node_modules')) chdir(originalDir)