mirror of
git://git.code.sf.net/p/openocd/code
synced 2025-07-18 19:50:23 +10:00
9 lines
95 B
Bash
Executable File
9 lines
95 B
Bash
Executable File
#!/bin/bash
|
|
|
|
REV=unknown
|
|
|
|
which svnversion > /dev/null 2>&1 && REV=`svnversion`
|
|
|
|
echo -n $REV
|
|
|