Skip to content

Commit

Permalink
time to switch the default to --extended-metadata
Browse files Browse the repository at this point in the history
Signed-off-by: Lamont Granquist <[email protected]>
  • Loading branch information
lamont-granquist committed Dec 2, 2016
1 parent 67951f7 commit e290746
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/stove/cli.rb
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ def option_parser
options[:key] = v
end

opts.on('--extended-metadata', 'Include non-backwards compatible metadata keys such as `issues_url`') do
options[:extended_metadata] = true
opts.on('--[no-]extended-metadata', 'Include non-backwards compatible metadata keys such as `issues_url`') do |v|
options[:extended_metadata] = v
end

opts.on('--no-ssl-verify', 'Turn off ssl verify') do
Expand Down Expand Up @@ -174,7 +174,7 @@ def options
:endpoint => nil,
:username => Config.username,
:key => Config.key,
:extended_metadata => false,
:extended_metadata => true,
:ssl_verify => true,

# Git options
Expand Down

0 comments on commit e290746

Please sign in to comment.