summaryrefslogtreecommitdiffstats
path: root/build/version.sh
blob: afcb865c14ae440db9cd9c85e5b8b679170e18ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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.2"
fi