vgmstream/version.sh

12 lines
257 B
Bash
Executable File

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