# File lib/nanoc/cli/command_runner.rb, line 22
    def site
      # Load site if possible
      @site ||= nil
      if File.file?('config.yaml') && @site.nil?
        @site = Nanoc::Site.new('.')
      end

      @site
    end