#! /bin/bash
##
# This is a utility script called by "ant bundle" to get the current Subversion
# revision so it can be used as the "build number" in the Finder's "Get Info"
# window.
#
# Paul J. Lucas [paul@lightcrafts.com]
##

svn info | grep Revision: | sed 's/Revision: //'

# vim:set et sw=4 ts=4:
