lib/sigh/commands_generator.rb in sigh-1.10.2 vs lib/sigh/commands_generator.rb in sigh-1.10.3
- old
+ new
@@ -66,12 +66,12 @@
'The path may be prefixed with a identifier in order to determine which provisioning profile should be used on which app.',
&multiple_values_option_proc(c, "provisioning_profile", &proc { |value| value.split('=', 2) })
c.option '-d', '--display_name STRING', String, 'Display name to use'
c.option '-e', '--entitlements PATH', String, 'The path to the entitlements file to use.'
c.option '--short_version STRING', String, 'Short version string to force binary and all nested binaries to use (CFBundleShortVersionString).'
- c.option '--bundle_version STRING', String, 'Bundle version to force binary and all nested binaries to use (CFBundleIdentifier).'
+ c.option '--bundle_version STRING', String, 'Bundle version to force binary and all nested binaries to use (CFBundleVersion).'
c.option '--use_app_entitlements', 'Extract app bundle codesigning entitlements and combine with entitlements from new provisionin profile.'
- c.option '-g', '--new_bundle_id STRING', String, 'New application bundle ID'
+ c.option '-g', '--new_bundle_id STRING', String, 'New application bundle ID (CFBundleIdentifier)'
c.option '--keychain_path STRING', String, 'Path to the keychain that /usr/bin/codesign should use'
c.action do |args, options|
Sigh::Resign.new.run(options, args)
end