From 2c2f4763d7be36635f97615bb5f51cddad8ca077 Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Tue, 8 Mar 2016 09:01:31 -0800 Subject: [PATCH] Don't bother building rpm package for source --- build/gulpfile.vscode.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/gulpfile.vscode.js b/build/gulpfile.vscode.js index 248d802ca46..5e358c3d836 100644 --- a/build/gulpfile.vscode.js +++ b/build/gulpfile.vscode.js @@ -362,7 +362,7 @@ function prepareRpmPackage(arch) { function buildRpmPackage(arch) { var rpmArch = getRpmPackageArch(arch); return shell.task([ - 'fakeroot rpmbuild -ba ' + rpmBuildPath + '/SPECS/' + product.applicationName + '.spec --target=' + rpmArch, + 'fakeroot rpmbuild -bb ' + rpmBuildPath + '/SPECS/' + product.applicationName + '.spec --target=' + rpmArch, ]); }