summarylogtreecommitdiffstats
path: root/fix-gulp-release.patch
diff options
context:
space:
mode:
Diffstat (limited to 'fix-gulp-release.patch')
-rw-r--r--fix-gulp-release.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/fix-gulp-release.patch b/fix-gulp-release.patch
deleted file mode 100644
index 97a54f3775e4..000000000000
--- a/fix-gulp-release.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff -ura package.orig/tasks/release.js package.new/tasks/release.js
---- package.orig/tasks/release.js 2019-03-13 20:47:32.334253693 +0100
-+++ package.new/tasks/release.js 2019-03-13 20:57:20.456395083 +0100
-@@ -11,6 +11,14 @@
- await build({ publish, x64, mac: [] });
- });
-
-+gulp.task('release:linux-x64', async() => {
-+ await build({ publish: 'never', x64, linux: [], c: { productName: 'rocketchat' } });
-+});
-+
-+gulp.task('release:linux-ia32', async() => {
-+ await build({ publish: 'never', ia32, linux: [], c: { productName: 'rocketchat' } });
-+});
-+
- gulp.task('release:linux', async() => {
- const { linux: { target } } = require('../electron-builder.json');
- const publish = getEnv() === 'production' ? 'onTagOrDraft' : 'never';