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.
10 lines
300 B
10 lines
300 B
if test "x$LIBSASS_VERSION" = "x"; then
|
|
LIBSASS_VERSION=`git describe --abbrev=4 --dirty --always --tags 2>/dev/null`
|
|
fi
|
|
if test "x$LIBSASS_VERSION" = "x"; then
|
|
LIBSASS_VERSION=`cat VERSION 2>/dev/null`
|
|
fi
|
|
if test "x$LIBSASS_VERSION" = "x"; then
|
|
LIBSASS_VERSION="[na]"
|
|
fi
|
|
echo $LIBSASS_VERSION
|
|
|