You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
|
|
SRCDIR=$1
|
|
TARBALL=$SRCDIR/.tarball-git-version
|
|
|
|
if test -f $TARBALL; then
|
|
V=$(cat $TARBALL)
|
|
elif test -d $SRCDIR/.git; then
|
|
V=$(git -C $SRCDIR describe --tags HEAD 2>/dev/null)
|
|
fi
|
|
|
|
if test -z "$V"; then
|
|
V="UNKNOWN"
|
|
fi
|
|
|
|
echo $V
|
|
|