fix(shorebird_cli): add missing exportMethodArgName to release command (#2073)
This commit is contained in:
@@ -63,6 +63,16 @@ On Xcode builds it is used as "CFBundleVersion".''',
|
||||
help:
|
||||
'''Export an IPA with these options. See "xcodebuild -h" for available exportOptionsPlist keys (iOS only).''',
|
||||
)
|
||||
..addOption(
|
||||
exportMethodArgName,
|
||||
defaultsTo: ExportMethod.appStore.argName,
|
||||
allowed: ExportMethod.values.map((e) => e.argName),
|
||||
help: 'Specify how the IPA will be distributed.',
|
||||
allowedHelp: {
|
||||
for (final method in ExportMethod.values)
|
||||
method.argName: method.description,
|
||||
},
|
||||
)
|
||||
..addOption(
|
||||
'flutter-version',
|
||||
help: 'The Flutter version to use when building the app (e.g: 3.16.3).',
|
||||
|
||||
Reference in New Issue
Block a user