summarylogtreecommitdiffstats
path: root/fix-gulp-release.patch
diff options
context:
space:
mode:
authorMatthias Lisin2019-02-24 19:55:42 +0100
committerMatthias Lisin2019-02-24 19:55:42 +0100
commit94c5817c93e795c1857276232bae279331d6df8b (patch)
tree3ade6125a7148ea76b0404e22121b50814dd20ec /fix-gulp-release.patch
parente448c8a87ef178fe20b017c48b0e5e24bd3f91ee (diff)
downloadaur-94c5817c93e795c1857276232bae279331d6df8b.tar.gz
upgpkg: rocketchat-desktop 2.15.0-1
- Uses electron notifications now, no more notifications patch required. - Depends on Electron 3 instead of 2. Actually 4 but it's not in the Arch repositories yet.
Diffstat (limited to 'fix-gulp-release.patch')
-rw-r--r--fix-gulp-release.patch16
1 files changed, 8 insertions, 8 deletions
diff --git a/fix-gulp-release.patch b/fix-gulp-release.patch
index 9f8c8fb3152f..d3065bae393e 100644
--- a/fix-gulp-release.patch
+++ b/fix-gulp-release.patch
@@ -1,8 +1,8 @@
diff -ura package.orig/tasks/release.js package.new/tasks/release.js
---- package.orig/tasks/release.js 2018-10-11 11:21:11.827710902 +0200
-+++ package.new/tasks/release.js 2018-10-11 11:23:28.795072470 +0200
-@@ -9,10 +9,7 @@
- const publish = getEnvName() !== 'production' ? 'never' : 'onTagOrDraft';
+--- package.orig/tasks/release.js 2019-02-24 19:19:17.230601550 +0100
++++ package.new/tasks/release.js 2019-02-24 19:22:03.772035574 +0100
+@@ -8,10 +8,5 @@
+ const publish = env !== 'production' ? 'never' : 'onTagOrDraft';
gulp.task('release:darwin', () => build({ publish, x64: true, mac: [] }));
gulp.task('release:win32', () => build({ publish, x64: true, ia32: true, win: ['nsis', 'appx'] }));
-gulp.task('release:linux', async() => {
@@ -10,7 +10,7 @@ diff -ura package.orig/tasks/release.js package.new/tasks/release.js
- await build({ publish, x64: true, linux: [], c: { productName: 'rocketchat' } });
- await build({ publish, ia32: true, linux: allLinuxTargetsButSnap, c: { productName: 'rocketchat' } });
-});
-+gulp.task('release:linux-x64', () => build({ x64: true, linux: [], c: { productName: 'rocketchat' } }));
-+gulp.task('release:linux-ia32', () => build({ ia32: true, linux: [], c: { productName: 'rocketchat' } }));
-
- gulp.task('release', (cb) => runSequence('build-app', `release:${ process.platform }`, cb));
+-
+-gulp.task('release', gulp.series('build-app', `release:${ process.platform }`));
++gulp.task('release:linux-x64', () => build({ publish, x64: true, linux: [], c: { productName: 'rocketchat' } }));
++gulp.task('release:linux-ia32', () => build({ publish, ia32: true, linux: [], c: { productName: 'rocketchat' } }));