Skip to content

Commit

Permalink
fix generate-manifest (#1002)
Browse files Browse the repository at this point in the history
  • Loading branch information
joaomoreno committed Jun 14, 2024
1 parent 1151559 commit 9f69378
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -309,13 +309,7 @@ module.exports = function (argv: string[]): void {
.description('Generates the extension manifest from the provided VSIX package.')
.requiredOption('-i, --packagePath <path>', 'Path to the VSIX package')
.option('-o, --out <path>', 'Output the extension manifest to <path> location (defaults to <packagename>.manifest)')
.action((
packagePath,
out
) =>
main(
generateManifest(packagePath, out)
));
.action(({ packagePath, out }) => main(generateManifest(packagePath, out)));

program
.command('ls-publishers')
Expand Down

0 comments on commit 9f69378

Please sign in to comment.