From ae82234e123ac265b30d3c9cd4cdf67ea4c56fbd Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Thu, 22 Sep 2016 07:09:49 +0100 Subject: [PATCH] Remove vulcanize step from archiver script It's unnecessary and just increases execution time. --- scripts/archive.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/scripts/archive.js b/scripts/archive.js index 66bebd42..f525eb04 100644 --- a/scripts/archive.js +++ b/scripts/archive.js @@ -9,13 +9,6 @@ const fs = require('fs-extra'); const os = require('os'); const helpers = require('./helpers'); -function vulcanize(rootPath) { - return childProcess.execFileSync('node', [ - 'scripts/vulcanize.js', - rootPath, - ]); -} - function getGitDescription() { const describe = String(childProcess.execFileSync('git', [ 'describe', @@ -243,7 +236,6 @@ if (process.argv.length > 2) { const gitDesc = getGitDescription(); const fileExtension = getArchiveFileExtension(); -vulcanize(rootPath); helpers.getAppReleasePaths(rootPath).forEach(releasePath => { const filename = `loot_${getFilenameSuffix(releasePath.label, gitDesc)}`;