mirror of
https://github.com/yawut/SDL.git
synced 2026-04-18 06:46:04 -05:00
13 lines
275 B
Bash
Executable File
13 lines
275 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Print the current source revision, if available
|
|
|
|
srcdir=`dirname $0`/..
|
|
|
|
if [ -d $srcdir/.svn ]; then
|
|
cd $srcdir
|
|
(svnversion -c 2>/dev/null || svnversion .) | \
|
|
sed -e 's,\([0-9]*\)[A-Z]*,\1,' \
|
|
-e 's,[0-9]*:\([0-9]*\)[A-Z]*,\1,'
|
|
fi
|