Mercurial > sdl-ios-xcode
view build-scripts/showrev.sh @ 3111:14d32495a502
Default video mode has been changed from 320x200 to 640x480, since fullscreen 320x200 is often unavailable.
author | Mike Gorchak <lestat@i.com.ua> |
---|---|
date | Tue, 28 Apr 2009 04:41:25 +0000 |
parents | 4c092987234b |
children | da6cbfa5b5f2 |
line wrap: on
line source
#!/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