Skip to content

Commit 93b8a73

Browse files
author
Benjamin Pasero
committed
add missing suffix
1 parent 7f0bff8 commit 93b8a73

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

build/gulpfile.vscode.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -271,9 +271,9 @@ function packageTask(platform, arch, opts) {
271271
.pipe(util.cleanNodeModule('gc-signals', ['binding.gyp', 'build/**', 'src/**', 'deps/**'], ['**/*.node', 'src/index.js']))
272272
.pipe(util.cleanNodeModule('node-pty', ['binding.gyp', 'build/**', 'src/**', 'deps/**'], ['build/Release/**']))
273273
.pipe(util.cleanNodeModule('vsda', ['**'], [(function () {
274-
if (process.platform === 'win32') { return 'build/Release/vsda_win32'; }
275-
if (process.platform === 'darwin') { return 'build/Release/vsda_darwin'; }
276-
if (process.platform === 'linux') { return process.arch === 'x64' ? 'build/Release/vsda_linux64' : 'build/Release/vsda_linux32'; }
274+
if (process.platform === 'win32') { return 'build/Release/vsda_win32.node'; }
275+
if (process.platform === 'darwin') { return 'build/Release/vsda_darwin.node'; }
276+
if (process.platform === 'linux') { return process.arch === 'x64' ? 'build/Release/vsda_linux64.node' : 'build/Release/vsda_linux32.node'; }
277277
})(), 'index.js']));
278278

279279
let all = es.merge(

0 commit comments

Comments
 (0)