Skip to content

Commit

Permalink
fix: remove manifest:generate flag validation
Browse files Browse the repository at this point in the history
  • Loading branch information
WillieRuemmele committed Feb 5, 2025
1 parent 0bc486a commit 4b706f8
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/commands/project/generate/manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,12 @@ export class ManifestGenerate extends SfCommand<ManifestGenerateCommandResult> {
metadata: arrayWithDeprecation({
char: 'm',
summary: messages.getMessage('flags.metadata.summary'),
exclusive: ['source-dir'],
}),
'source-dir': arrayWithDeprecation({
char: 'p',
aliases: ['sourcepath'],
deprecateAliases: true,
summary: messages.getMessage('flags.source-dir.summary'),
exclusive: ['metadata'],
}),
name: Flags.string({
char: 'n',
Expand Down Expand Up @@ -90,13 +88,11 @@ export class ManifestGenerate extends SfCommand<ManifestGenerateCommandResult> {
delimiter: ',',
summary: messages.getMessage('flags.excluded-metadata.summary'),
dependsOn: ['from-org'],
exclusive: ['metadata'],
}),
'from-org': Flags.custom({
summary: messages.getMessage('flags.from-org.summary'),
aliases: ['fromorg'],
deprecateAliases: true,
exclusive: ['source-dir'],
parse: async (input: string | undefined) => (input ? Org.create({ aliasOrUsername: input }) : undefined),
})(),
'output-dir': Flags.string({
Expand Down

0 comments on commit 4b706f8

Please sign in to comment.