Skip to content

Commit

Permalink
Merge pull request #1046 from mlasson/patch-1
Browse files Browse the repository at this point in the history
Fix typo in option hint
  • Loading branch information
benibenj committed Sep 3, 2024
2 parents 164eebd + a583bab commit 3090717
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/package.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2019,7 +2019,7 @@ export async function printAndValidatePackagedFiles(files: IFile[], cwd: string,
message += unusedIncludePatterns.map(p => ` - ${p}`).join('\n');
message += '\nRemove any include pattern which is not needed.\n';
message += `\n=> Run ${chalk.bold('vsce ls --tree')} to see all included files.\n`;
message += `=> Use ${chalk.bold('--allow-unused-files-patterns')} to skip this check`;
message += `=> Use ${chalk.bold('--allow-unused-files-pattern')} to skip this check`;
util.log.error(message);
process.exit(1);
}
Expand Down

0 comments on commit 3090717

Please sign in to comment.