From 38bce9930a5856cab4c91944370412ee7ff72ef9 Mon Sep 17 00:00:00 2001 From: Joao Moreno Date: Fri, 31 Mar 2017 10:30:29 +0200 Subject: [PATCH] :construction_worker: remove buffers from build streams --- build/gulpfile.vscode.linux.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build/gulpfile.vscode.linux.js b/build/gulpfile.vscode.linux.js index ee4ca6319ff..cc8f75a0c9c 100644 --- a/build/gulpfile.vscode.linux.js +++ b/build/gulpfile.vscode.linux.js @@ -63,10 +63,10 @@ function prepareDebPackage(arch) { .pipe(replace('@@LICENSE@@', product.licenseName)) .pipe(rename('usr/share/appdata/' + product.applicationName + '.appdata.xml')); - const icon = gulp.src('resources/linux/code.png', { base: '.', buffer: false }) + const icon = gulp.src('resources/linux/code.png', { base: '.' }) .pipe(rename('usr/share/pixmaps/' + product.applicationName + '.png')); - const code = gulp.src(binaryDir + '/**/*', { base: binaryDir, buffer: false }) + const code = gulp.src(binaryDir + '/**/*', { base: binaryDir }) .pipe(rename(function (p) { p.dirname = 'usr/share/' + product.applicationName + '/' + p.dirname; })); let size = 0; @@ -139,7 +139,7 @@ function prepareRpmPackage(arch) { .pipe(replace('@@LICENSE@@', product.licenseName)) .pipe(rename('usr/share/appdata/' + product.applicationName + '.appdata.xml')); - const icon = gulp.src('resources/linux/code.png', { base: '.', buffer: false }) + const icon = gulp.src('resources/linux/code.png', { base: '.' }) .pipe(rename('BUILD/usr/share/pixmaps/' + product.applicationName + '.png')); const code = gulp.src(binaryDir + '/**/*', { base: binaryDir }) @@ -212,7 +212,7 @@ function prepareFlatpak(arch) { .pipe(replace('@@LICENSE@@', product.licenseName)) .pipe(rename('share/appdata/' + flatpakManifest.appId + '.appdata.xml'))); - all.push(gulp.src(binaryDir + '/**/*', { base: binaryDir, buffer: false }) + all.push(gulp.src(binaryDir + '/**/*', { base: binaryDir }) .pipe(rename(function (p) { p.dirname = 'share/' + product.applicationName + '/' + p.dirname; })));