File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
src/commands/project/generate Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -53,14 +53,12 @@ export class ManifestGenerate extends SfCommand<ManifestGenerateCommandResult> {
53
53
metadata : arrayWithDeprecation ( {
54
54
char : 'm' ,
55
55
summary : messages . getMessage ( 'flags.metadata.summary' ) ,
56
- exclusive : [ 'source-dir' ] ,
57
56
} ) ,
58
57
'source-dir' : arrayWithDeprecation ( {
59
58
char : 'p' ,
60
59
aliases : [ 'sourcepath' ] ,
61
60
deprecateAliases : true ,
62
61
summary : messages . getMessage ( 'flags.source-dir.summary' ) ,
63
- exclusive : [ 'metadata' ] ,
64
62
} ) ,
65
63
name : Flags . string ( {
66
64
char : 'n' ,
@@ -90,13 +88,11 @@ export class ManifestGenerate extends SfCommand<ManifestGenerateCommandResult> {
90
88
delimiter : ',' ,
91
89
summary : messages . getMessage ( 'flags.excluded-metadata.summary' ) ,
92
90
dependsOn : [ 'from-org' ] ,
93
- exclusive : [ 'metadata' ] ,
94
91
} ) ,
95
92
'from-org' : Flags . custom ( {
96
93
summary : messages . getMessage ( 'flags.from-org.summary' ) ,
97
94
aliases : [ 'fromorg' ] ,
98
95
deprecateAliases : true ,
99
- exclusive : [ 'source-dir' ] ,
100
96
parse : async ( input : string | undefined ) => ( input ? Org . create ( { aliasOrUsername : input } ) : undefined ) ,
101
97
} ) ( ) ,
102
98
'output-dir' : Flags . string ( {
You can’t perform that action at this time.
0 commit comments