# File lib/chef/provider/git.rb, line 106
      def enable_submodules
        if @new_resource.enable_submodules
          Chef::Log.info "Enabling git submodules"
          command = "#{git} submodule init && #{git} submodule update"
          run_command(run_options(:command => command, :cwd => @new_resource.destination))
        end
      end