sct/lib/sct/commands_generator.rb in sct-1.0.0 vs sct/lib/sct/commands_generator.rb in sct-1.0.1
- old
+ new
@@ -38,11 +38,11 @@
end
command :'dev' do |c|
c.syntax = 'sct dev'
c.description = 'start development container in the current directory'
- c.option '--build', '(re)build image from Dockerfile before starting'
- c.option '--pull', 'pull latest base image from Dockerfile before (re)building. only used in combination with --build flag'
+ c.option '--build', '(re)build images before starting'
+ c.option '--pull', 'pull latest images before starting'
c.action do |args, options|
Sct::DevCommand.new.execute args, options
end
end