Skip to content

Commit f8804f9

Browse files
committed
Use explicit path for vsce
1 parent 3c07be5 commit f8804f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/ql-vscode/gulpfile.ts/package.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export async function packageExtension(): Promise<void> {
99
'package',
1010
'--out', path.resolve(deployedPackage.distPath, '..', `${deployedPackage.name}-${deployedPackage.version}.vsix`)
1111
];
12-
const proc = childProcess.spawn('npx', ['vsce'].concat(args), {
12+
const proc = childProcess.spawn('./node_modules/.bin/vsce', args, {
1313
cwd: deployedPackage.distPath
1414
});
1515
proc.childProcess.stdout!.on('data', (data) => {

0 commit comments

Comments
 (0)