Skip to content

Instantly share code, notes, and snippets.

@davidalpert
Created May 2, 2011 20:36
Show Gist options
  • Save davidalpert/952310 to your computer and use it in GitHub Desktop.
Save davidalpert/952310 to your computer and use it in GitHub Desktop.
def svn_version
version_range = `./tools/svn/svnversion`.match('(\d+)(?::(\d+))?') rescue [-1]
ENV["BUILD_VCS_NUMBER"] || version_range[2] || version_range[1]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment