#!/bin/sh
##
# 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]
##

git show | grep "^commit" | sed 's/^commit \(.......\).*/\1/'

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