Skip to content

Commit 9f69378

Browse files
authored
fix generate-manifest (#1002)
1 parent 1151559 commit 9f69378

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/main.ts

+1-7
Original file line numberDiff line numberDiff line change
@@ -309,13 +309,7 @@ module.exports = function (argv: string[]): void {
309309
.description('Generates the extension manifest from the provided VSIX package.')
310310
.requiredOption('-i, --packagePath <path>', 'Path to the VSIX package')
311311
.option('-o, --out <path>', 'Output the extension manifest to <path> location (defaults to <packagename>.manifest)')
312-
.action((
313-
packagePath,
314-
out
315-
) =>
316-
main(
317-
generateManifest(packagePath, out)
318-
));
312+
.action(({ packagePath, out }) => main(generateManifest(packagePath, out)));
319313

320314
program
321315
.command('ls-publishers')

0 commit comments

Comments
 (0)