mirror of
https://github.com/proxytunnel/proxytunnel.git
synced 2026-01-23 02:34:59 +00:00
git-svn-id: https://proxytunnel.svn.sourceforge.net/svnroot/proxytunnel/trunk/proxytunnel@164 bc163920-b10d-0410-b2c5-a5491ca2ceef
9 lines
144 B
Bash
Executable file
9 lines
144 B
Bash
Executable file
#!/bin/sh
|
|
|
|
REV=`svn info . 2> /dev/null | grep '^Revision' | awk '{print $2}'`
|
|
if [ "x$REV" = "x" ] ; then
|
|
echo "0"
|
|
else
|
|
echo $REV
|
|
fi
|
|
exit 0;
|