diff options
author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-25 11:14:38 +0000 |
---|---|---|
committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-25 11:14:38 +0000 |
commit | 7847c1b860cd634aa88e15ee5b7a81e3a8eb182c (patch) | |
tree | fd45335ae4e96c3e14da1126320bb65fd2c569e3 /tool | |
parent | b2258b6482dda5d30d85d49900cc7612f6ca2f73 (diff) |
* tool/make-snapshot: more portable.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14694 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool')
-rwxr-xr-x | tool/make-snapshot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/make-snapshot b/tool/make-snapshot index f0f377c9ca..957c3e8b46 100755 --- a/tool/make-snapshot +++ b/tool/make-snapshot @@ -12,7 +12,7 @@ dest=`cd "$1"; pwd` tmp=${TMP_DIR-/tmp}/ #ruby-snapshot-$$ mkdir -p "$tmp" cd "$tmp" -revision=`svn export $SVNURL ruby | sed -n '$s/.*\([0-9][0-9]*\).*/\1/p'` +revision=`svn export $SVNURL ruby | sed -n '$s/[^0-9]//gp'` [ $revision ] || revision=`svn info $SVNURL | sed -n 's/Revision: //p'` echo "#define RUBY_REVISION $revision" > ruby/revision.h v=ruby-r$revision |