mirror of
https://github.com/yawut/SDL.git
synced 2026-04-14 12:55:50 -05:00
11 lines
193 B
Bash
Executable File
11 lines
193 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 | sed -e 's,[0-9]*:\([0-9]*\)[A-Z]*,\1,'
|
|
fi
|