lib/jets/aws_services/stack_status.rb in jets-1.6.0 vs lib/jets/aws_services/stack_status.rb in jets-1.6.1
- old
+ new
@@ -34,10 +34,10 @@
# Assumes stack exists
resp = cfn.describe_stacks(stack_name: stack_name)
status = resp.stacks[0].stack_status
if status =~ /_IN_PROGRESS$/
puts "The '#{stack_name}' stack status is #{status}. " \
- "Please wait until the stack is ready and try again.".colorize(:red)
+ "Please wait until the stack is ready and try again.".color(:red)
exit 0
elsif resp.stacks[0].outputs.empty? && status != 'ROLLBACK_COMPLETE'
# This Happens when the miminal stack fails at the very beginning.
# There is no s3 bucket at all. User should delete the stack.
puts "The minimal stack failed to create. Please delete the stack first and try again. " \
\ No newline at end of file