]> git.ipfire.org Git - thirdparty/systemd.git/blame - tools/meson-vcs-tag.sh
update TODO
[thirdparty/systemd.git] / tools / meson-vcs-tag.sh
CommitLineData
ff12a795 1#!/usr/bin/env bash
681bd2c5
ZJS
2
3set -eu
4set -o pipefail
5
e4d5753b 6dir="$1"
e1ca734e
ZJS
7tag="$2"
8fallback="$3"
9
10if [ -n "$tag" ]; then
cc5549ca
ZJS
11 echo "$tag"
12 exit 0
e1ca734e 13fi
681bd2c5 14
e4d5753b
ZJS
15# Apparently git describe has a bug where it always considers the work-tree
16# dirty when invoked with --git-dir (even though 'git status' is happy). Work
17# around this issue by cd-ing to the source directory.
88e94c38
JL
18cd "$dir"
19# Check that we have either .git/ (a normal clone) or a .git file (a work-tree)
20# and that we don't get confused if a tarball is extracted in a higher-level
21# git repository.
22[ -e .git ] && git describe --abbrev=7 --dirty=+ 2>/dev/null | sed 's/^v//' || echo "$fallback"