Remove fakeroot wrapper, when building .rpm packages (#153249)

RPM packaging: Don't use fakeroot to build

RPM packages are intended to be built by normal users, they don't
require root permissions (even fake ones).

Co-authored-by: Raymond Zhao <7199958+rzhao271@users.noreply.github.com>
pull/154202/head
Frank Dana 2022-07-05 17:01:03 -04:00 committed by GitHub
parent 3e59037fa1
commit 1a621c9b74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -210,7 +210,7 @@ function buildRpmPackage(arch) {
return shell.task([
'mkdir -p ' + destination,
'HOME="$(pwd)/' + destination + '" fakeroot rpmbuild -bb ' + rpmBuildPath + '/SPECS/' + product.applicationName + '.spec --target=' + rpmArch,
'HOME="$(pwd)/' + destination + '" rpmbuild -bb ' + rpmBuildPath + '/SPECS/' + product.applicationName + '.spec --target=' + rpmArch,
'cp "' + rpmOut + '/$(ls ' + rpmOut + ')" ' + destination + '/'
]);
}