lib/simple_deploy/cli/outputs.rb in simple_deploy-0.6.1 vs lib/simple_deploy/cli/outputs.rb in simple_deploy-0.6.2
- old
+ new
@@ -30,12 +30,15 @@
stack = Stack.new :environment => opts[:environment],
:name => opts[:name],
:config => config,
:logger => logger
+ # we need a little whitespace
+ puts
+
outputs = stack.outputs
outputs.each do |hash|
- puts "%30s: %s" % [hash['OutputKey'], hash['OutputValue']]
+ puts "%s: %s" % [hash['OutputKey'], hash['OutputValue']]
end
end
end
end
end