class ChefCLI::Command::Push

def apply_params!(params)

def apply_params!(params)
  remaining_args = parse_options(params)
  if remaining_args.size < 1 || remaining_args.size > 2
    ui.err(opt_parser)
    return false
  else
    @policy_group = remaining_args[0]
    @policyfile_relative_path = remaining_args[1]
  end
  true
end