lib/simple_perf/cli/destroy.rb in simple_perf-0.0.5 vs lib/simple_perf/cli/destroy.rb in simple_perf-0.0.6
- old
+ new
@@ -11,21 +11,21 @@
banner <<-EOS
Destroys CloudFormation stack.
Usage:
- simple_perf destroy -e ENVIRONMENT -n STACK_NAME
+ simple_perf destroy -e ENVIRONMENT -p PROJECT_NAME
EOS
opt :help, "Display Help"
opt :environment, "Set the target environment", :type => :string
- opt :name, "Stack name to manage", :type => :string
+ opt :project, "Project name to manage", :type => :string
end
Trollop::die :environment, "is required but not specified" unless opts[:environment]
- Trollop::die :name, "is required but not specified" unless opts[:name]
+ Trollop::die :project, "is required but not specified" unless opts[:project]
command = 'simple_deploy destroy' +
' -e ' + opts[:environment] +
- ' -n ' + opts[:name]
+ ' -n ' + 'simple-perf-' + opts[:project]
Shared::pretty_print `#{command}`
end
end
end
\ No newline at end of file