summarylogtreecommitdiffstats
path: root/hadron-build.diff
blob: aff2801daf382c1af7019a92a82722c561ef2c4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
diff --git a/commands/release.js b/commands/release.js
index 42de1d1a1..1ef8d08a0 100644
--- a/commands/release.js
+++ b/commands/release.js
@@ -465,10 +465,7 @@ exports.run = (argv, done) => {
     task('install dependencies', installDependencies),
     task('write license file', writeLicenseFile),
     task('remove development files', removeDevelopmentFiles),
-    !noAsar && task('create application asar', createApplicationAsar),
-    !skipInstaller && task('create branded installer', createBrandedInstaller),
-    task('create application zip', createApplicationZip),
-    task('store build configuration as json', writeConfigToJson)
+    !noAsar && task('create application asar', createApplicationAsar)
   ].filter(Boolean));

   return async.series(tasks, (_err) => {
@@ -482,9 +479,5 @@ exports.run = (argv, done) => {
 exports.handler = (argv) => {
   exports.run(argv, (_err, CONFIG) => {
     cli.abortIfError(_err);
-    cli.ok(`${CONFIG.assets.length} assets successfully built`);
-    CONFIG.assets.map(function(asset) {
-      cli.info(asset.path);
-    });
   });
 };
diff --git a/lib/target.js b/lib/target.js
index 6ee5baebb..007ed52af 100644
--- a/lib/target.js
+++ b/lib/target.js
@@ -4,8 +4,6 @@ const semver = require('semver');
 const path = require('path');
 const normalizePkg = require('normalize-package-data');
 const parseGitHubRepoURL = require('parse-github-repo-url');
-const ffmpegAfterExtract = require('electron-packager-plugin-non-proprietary-codecs-ffmpeg')
-  .default;
 const windowsInstallerVersion = require('./windows-installer-version');
 const debug = require('debug')('hadron-build:target');

@@ -206,8 +204,7 @@ class Target {
       platform: this.platform,
       arch: this.arch,
       electronVersion: this.electronVersion,
-      sign: null,
-      afterExtract: [ffmpegAfterExtract]
+      sign: null
     };

     if (this.platform === 'win32') {