]> git.sur5r.net Git - openocd/blob - guess-rev.sh
Pavel Chromy fix: the guess-rev.sh scripts to retrieve SVN revision returns the resul...
[openocd] / guess-rev.sh
1 #!/bin/bash
2
3 REV=unknown
4
5 which svnversion > /dev/null 2>&1 && REV=`svnversion -n`
6
7 echo -n $REV
8