lib/pdk/cli/get.rb in pdk-2.7.1 vs lib/pdk/cli/get.rb in pdk-3.0.0

- old
+ new

@@ -1,20 +1,22 @@ -module PDK::CLI - @get_cmd = @base_cmd.define_command do - name 'get' - usage 'get [subcommand] [options]' - summary 'Retrieve information about the PDK or current project.' - default_subcommand 'help' +module PDK + module CLI + @get_cmd = @base_cmd.define_command do + name 'get' + usage 'get [subcommand] [options]' + summary 'Retrieve information about the PDK or current project.' + default_subcommand 'help' - run do |_opts, args, _cmd| - if args == ['help'] - PDK::CLI.run(%w[get --help]) - exit 0 - end + run do |_opts, args, _cmd| + if args == ['help'] + PDK::CLI.run(['get', '--help']) + exit 0 + end - PDK::CLI.run(%w[get help]) if args.empty? + PDK::CLI.run(['get', 'help']) if args.empty? + end end + @get_cmd.add_command Cri::Command.new_basic_help end - @get_cmd.add_command Cri::Command.new_basic_help end require 'pdk/cli/get/config'