lib/chef/knife/topo_cookbook_upload.rb in knife-topo-2.0.3 vs lib/chef/knife/topo_cookbook_upload.rb in knife-topo-2.0.4
- old
+ new
@@ -35,17 +35,17 @@
long: '--data-bag DATA_BAG',
description: 'The data bag the topologies are stored in'
)
# Make called command options available
- self.options = (Chef::Knife::CookbookUpload.options).merge(
+ self.options = Chef::Knife::CookbookUpload.options.merge(
TopoCookbookUpload.options)
include KnifeTopo::Loader
def initialize(args)
super
- @args = args
+ @args = args
# All called commands need to accept union of options
Chef::Knife::CookbookUpload.options = options
end