mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 20:26:08 +00:00
Correct Package format
apt-get doesn't like filenames in package catalog containing .
This commit is contained in:
@@ -294,9 +294,9 @@ function prepareDebPackage(arch) {
|
||||
function buildDebPackage(arch) {
|
||||
var debArch = getDebPackageArch(arch);
|
||||
return shell.task([
|
||||
'fakeroot dpkg-deb -b vscode-' + debArch,
|
||||
'dpkg-scanpackages . /dev/null > Packages'
|
||||
], { cwd: '.build/linux/' + debArch});
|
||||
'fakeroot dpkg-deb -b ' + debArch + '/vscode-' + debArch,
|
||||
'dpkg-scanpackages ' + debArch + ' /dev/null > ' + debArch + '/Packages'
|
||||
], { cwd: '.build/linux'});
|
||||
}
|
||||
|
||||
function buildDebPackageCatalog(arch) {
|
||||
|
||||
Reference in New Issue
Block a user