cleanup-archive.patch 569 B

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