summaryrefslogtreecommitdiff
path: root/tools/get-scala-revision
Commit message (Collapse)AuthorAgeFilesLines
* Tweaks to get-scala-revision.Paul Phillips2011-12-051-2/+9
| | | | | | | | Reference to git head is supposed to be HEAD, not head. Also apparently [[ <test> ]] is a bashism so it's [ <test> ]. Made name generation robust against the absence of the dev tag; it will generate a similar name even if it's not there, minus the part it can't determine without it.
* Use git-describe to create build string.Paul Phillips2011-12-041-23/+5
| | | | | | | | | | | | | | Created dev tag which is the merge-base of master and 2.9.1 (merge-base is the last common commit), and told ant to generate build strings based on that. So distributions look like scala-2.10.0.dev-1289-gbba3918 Where the 1289 means you are 1289 commits ahead of "dev" and the last segment (minus the g) is the sha-1 hash. This no doubt breaks windows even further. Help getting it back on its feet greatly appreciated.
* Get svn revision on Windowsmichelou2011-09-171-1/+1
|
* fix get-scala-revision script for the case when...Lukas Rytz2011-03-301-1/+2
| | | | | | fix get-scala-revision script for the case when svn prints some warnings. no review
* Today's Bourne Shell Ultimatum. No review.Paul Phillips2010-11-271-1/+1
|
* The usual flailing associated with changing a s...Paul Phillips2010-11-271-3/+3
| | | | | | The usual flailing associated with changing a shell script and using too recent a feature. Hopefully unbreaks build, no review.
* Moved the painful-in-ant git/svn revision getti...Paul Phillips2010-11-261-0/+29
Moved the painful-in-ant git/svn revision getting logic into bash where it's at least somewhat less painful. Made it more flexible for easy use in more places since we presently have all kinds of revision figuring logic variations in other build files (sbaz, installer, scala-documentation, scala-tool-support, etc.) No review.