diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-08-28 15:29:20 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-08-28 15:34:24 -0400 |
commit | 97849b81fb146cc1d53a369dda03c60360da08b5 (patch) | |
tree | 63a63bbb260069844db4fb7692d3b60c6f74dad4 /build/version.sh | |
parent | f6940f3d5a7732e6e289a772ca2c2f5915f2ce75 (diff) | |
download | bfs-97849b81fb146cc1d53a369dda03c60360da08b5.tar.xz |
build/version.sh: Move version calculation here
Diffstat (limited to 'build/version.sh')
-rwxr-xr-x | build/version.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/build/version.sh b/build/version.sh new file mode 100755 index 0000000..a14e996 --- /dev/null +++ b/build/version.sh @@ -0,0 +1,18 @@ +#!/bin/sh + +# Copyright © Tavian Barnes <tavianator@tavianator.com> +# SPDX-License-Identifier: 0BSD + +# Print the version number + +set -eu + +DIR="$(dirname -- "$0")/.." + +if [ "${VERSION-}" ]; then + printf '%s' "$VERSION" +elif [ -e "$DIR/.git" ] && command -v git >/dev/null 2>&1; then + git -C "$DIR" describe --always --dirty +else + echo "4.0.1" +fi |