# File lib/chef/provider/subversion.rb, line 51
      def action_export
        assert_target_directory_valid!
        if target_dir_non_existant_or_empty?
          run_command(run_options(:command => export_command))
          @new_resource.updated_by_last_action(true)
        else
          Chef::Log.debug "#{@new_resource} export destination #{@new_resource.destination} already exists or is a non-empty directory - nothing to do"
        end
      end