lib/hawk/cli.rb in hawk-1.2.0 vs lib/hawk/cli.rb in hawk-1.3.0
- old
+ new
@@ -11,9 +11,14 @@
options[:preserve_ipa] = false
opts.on( '-p', '--preserve-ipa', 'Leave a copy of the .ipa file in the current directory' ) do
options[:preserve_ipa] = true
end
+ options[:preserve_manifest] = false
+ opts.on( '-m', '--preserve-manifest', 'Leave a copy of the manifest.plist file in the current directory' ) do
+ options[:preserve_manifest] = true
+ end
+
opts.on( '-h', '--help', 'Display this screen' ) do
puts opts
exit
end
end