Update get.rb to remove 'puts'

Remove the 'puts' dump of the options as it makes piping the output more difficult. Maybe better to add a verbosity flag and debug prints?
This commit is contained in:
Dillon Buchanan
2015-07-28 08:55:54 -04:00
parent 315d3d6499
commit e3ec56210b

View File

@@ -26,8 +26,6 @@ module Zanzibar
def fetch_secret(scrt_id, label = nil) def fetch_secret(scrt_id, label = nil)
scrt = ::Zanzibar::Zanzibar.new(@zanzibar_options) scrt = ::Zanzibar::Zanzibar.new(@zanzibar_options)
puts @zanzibar_options
if label if label
scrt.download_secret_file(scrt_id: scrt_id, scrt.download_secret_file(scrt_id: scrt_id,
type: label) type: label)