Use app name not 'code' in deb/rpm files

Fixes #6547
This commit is contained in:
Daniel Imms
2016-05-31 17:58:06 -07:00
parent b564e145e5
commit 5ccd2ff46c

View File

@@ -320,7 +320,7 @@ function buildDebPackage(arch) {
return shell.task([
'chmod 755 code-' + debArch + '/DEBIAN/postinst ' + 'code-' + debArch + '/DEBIAN/prerm',
'mkdir -p deb',
'fakeroot dpkg-deb -b code-' + debArch + ' deb/code-' + debArch + '.deb',
'fakeroot dpkg-deb -b code-' + debArch + ' deb/' + product.applicationName + '-' + debArch + '.deb',
'dpkg-scanpackages deb /dev/null > Packages'
], { cwd: '.build/linux/deb/' + debArch});
}
@@ -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 + '/code-' + rpmArch + '.rpm',
'cp "' + rpmOut + '/$(ls ' + rpmOut + ')" ' + destination + '/' + product.applicationName+ '-' + rpmArch + '.rpm',
'createrepo ' + destination
]);
}