From 9060d64fec9f9ca20b0ac7e950ef36b2b8cf8fde Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Tue, 31 May 2016 18:14:19 -0700 Subject: [PATCH] Add version and revision to rpm package Part of #6587 --- 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 cbad6fade8a..2f08b84c725 100644 --- a/build/gulpfile.vscode.js +++ b/build/gulpfile.vscode.js @@ -378,7 +378,7 @@ function buildRpmPackage(arch) { return shell.task([ 'mkdir -p ' + destination, 'HOME="$(pwd)/' + destination + '" fakeroot rpmbuild -bb ' + rpmBuildPath + '/SPECS/' + product.applicationName + '.spec --target=' + rpmArch, - 'cp "' + rpmOut + '/$(ls ' + rpmOut + ')" ' + destination + '/' + product.applicationName+ '-' + rpmArch + '.rpm', + 'cp "' + rpmOut + '/$(ls ' + rpmOut + ')" ' + destination + '/', 'createrepo ' + destination ]); }