vgmstream/version.sh
2019-09-02 20:48:33 +02:00

12 lines
250 B
Bash
Executable File

#!/bin/sh
# get current git version, redirect stderr to stdin, change : to _
VERSION=$(git describe --always 2>&1 | tr : _ )
# ignore git stderr "fatal:
if case $VERSION in fatal*) ;; *) false;; esac; then
echo ""
else
echo "$VERSION"
fi;