mirror of
https://github.com/stedolan/jq.git
synced 2024-05-11 05:55:39 +00:00
14 lines
313 B
Bash
Executable File
14 lines
313 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
cd "$(dirname "$0")/../"
|
|
test -d .git || exit 1
|
|
|
|
if git describe --tags --match 'jq-*' >/dev/null 2>&1; then
|
|
git describe --tags --match 'jq-*' --dirty | sed 's/^jq-//'
|
|
else
|
|
branch=$(git rev-parse --abbrev-ref HEAD)
|
|
commit=$(git describe --always --dirty)
|
|
echo "${branch}-${commit}"
|
|
fi
|