# File lib/kwala/build_context.rb, line 34
  def vcs_info
    if @vcs_info.nil?
      # For now svn
      cur = Dir.pwd
      begin
        Dir.chdir(self.project_directory)
        @vcs_info = `svn log -r #{self.vcs_num} --verbose`
      ensure
        Dir.chdir(cur)
      end
    end

    @vcs_info
  end