cleanup-archive.patch 566 B

12345678910111213
  1. diff --git a/build/gulpfile.vscode.win32.js b/build/gulpfile.vscode.win32.js
  2. index 1a73ae9..1b87189 100644
  3. --- a/build/gulpfile.vscode.win32.js
  4. +++ b/build/gulpfile.vscode.win32.js
  5. @@ -126,7 +126,7 @@ defineWin32SetupTasks('arm64', 'user');
  6. function archiveWin32Setup(arch) {
  7. return cb => {
  8. - const args = ['a', '-tzip', zipPath(arch), '-x!CodeSignSummary*.md', '.', '-r'];
  9. + const args = ['a', '-tzip', zipPath(arch), '-x!CodeSignSummary*.md', '-x!tools', '.', '-r'];
  10. cp.spawn(_7z, args, { stdio: 'inherit', cwd: buildPath(arch) })
  11. .on('error', cb)