
1 Jun
2011
1 Jun
'11
5:19 p.m.
On Wednesday, June 01, 2011 11:02:30 Stephane Fillod wrote:
-if rev=`svn info 2>/dev/null` ; then +if rev=`LANG=C svn info 2>/dev/null` ; then rev=`echo "${rev}" | grep '^Revision' | awk '{print $NF}'`
LANG=C wont fix the bug, just make it work in more cases. you need LC_ALL=C. -mike