Files
motion/version.sh
2015-10-18 20:21:44 -06:00

11 lines
347 B
Bash
Executable File

#!/bin/sh
SNV_VERSION=`cd "$1" && LC_ALL=C svn info 2> /dev/null | grep Revision | cut -d' ' -f2`
test $SNV_VERSION || SNV_VERSION=`cd "$1" && grep revision .svn/entries 2>/dev/null | cut -d '"' -f2`
test $SNV_VERSION || SNV_VERSION=UNKNOWN
GITDIR=".git"
if [ -d "$GITDIR" ]; then
SNV_VERSION=`git show -s --format=%h`
fi
echo -n "3.4.1~rc01"