From bccbc219cc655b2c9795f6ee4178332dc9671555 Mon Sep 17 00:00:00 2001 From: Paul Oppenheim Date: Mon, 5 Sep 2016 19:40:33 -0700 Subject: [PATCH] vscode-linux-*-build-deb - permission bits match expected fixes #11557 --- build/gulpfile.vscode.linux.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/gulpfile.vscode.linux.js b/build/gulpfile.vscode.linux.js index c1e220382b8..628a9dff844 100644 --- a/build/gulpfile.vscode.linux.js +++ b/build/gulpfile.vscode.linux.js @@ -77,7 +77,7 @@ function prepareDebPackage(arch) { function buildDebPackage(arch) { const debArch = getDebPackageArch(arch); return shell.task([ - 'chmod 755 ' + product.applicationName + '-' + debArch + '/DEBIAN/postinst ' + product.applicationName + '-' + debArch + '/DEBIAN/prerm', + 'chmod 755 ' + product.applicationName + '-' + debArch + '/DEBIAN/postinst ' + product.applicationName + '-' + debArch + '/DEBIAN/prerm ' + product.applicationName + '-' + debArch + '/DEBIAN/postrm', 'mkdir -p deb', 'fakeroot dpkg-deb -b ' + product.applicationName + '-' + debArch + ' deb', 'dpkg-scanpackages deb /dev/null > Packages'