# File lib/chef/knife/environment_edit.rb, line 32
      def run
        env_name = @name_args[0]

        if env_name.nil?
          show_usage
          ui.fatal("You must specify an environment name")
          exit 1
        end

        edit_object(Chef::Environment, env_name)
      end