bin/minke in minke-1.13.20 vs bin/minke in minke-1.14.0
- old
+ new
@@ -37,10 +37,11 @@
cucumber : run cucumber tests
run : start the application
build_image : build a docker image
push : push built image to the registry
encrypt : encrypt secrets with a private key
+ shell : start a shell session inside the build container
See 'minke COMMAND --help' for more information on a specific command.
HELP
global = OptionParser.new do |opts|
opts.banner = "Usage: minke [options] [subcommand [options]]"
@@ -153,9 +154,11 @@
doCommand(:build_image, options[:verbose], options[:config])
when "run"
doCommand(:run, options[:verbose], options[:config])
when "push"
doCommand(:push, options[:verbose], options[:config])
+when "shell"
+ doCommand(:shell, options[:verbose], options[:config])
when "generate"
if options[:generator] == nil || options[:output] == nil || options[:name] == nil || options[:namespace] == nil
puts "Please specify options use: minke generate --help for help on command line options"
exit 0
end