From 6742e394d7328b1e8dcafa7a5c8334a3754b2b1c Mon Sep 17 00:00:00 2001 From: SteVen Batten Date: Mon, 14 Feb 2022 10:35:08 -0800 Subject: [PATCH] fix typo in filter for pdb/node --- build/gulpfile.scan.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/gulpfile.scan.js b/build/gulpfile.scan.js index d1d018e86ab..cf88b69e0f6 100644 --- a/build/gulpfile.scan.js +++ b/build/gulpfile.scan.js @@ -76,7 +76,7 @@ function nodeModules(destinationExe, destinationPdb, platform) { const exe = () => { return gulp.src(dependenciesSrc, { base: '.', dot: true }) - .pipe(filter(['**/*.node', '!**/prebuild/**/*.node'])) + .pipe(filter(['**/*.node', '!**/prebuilds/**/*.node'])) .pipe(gulp.dest(destinationExe)); };