mirror of
https://github.com/docker/buildx.git
synced 2024-11-22 15:37:16 +08:00
23b217af24
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
17 lines
325 B
Bash
Executable File
17 lines
325 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
set -e
|
|
|
|
case $1 in
|
|
"version")
|
|
git describe --match 'v[0-9]*' --dirty='.m' --always --tags
|
|
;;
|
|
"revision")
|
|
echo "$(git rev-parse HEAD)$(if ! git diff --no-ext-diff --quiet --exit-code; then echo .m; fi)"
|
|
;;
|
|
*)
|
|
echo "usage: ./hack/git-meta <version|revision>"
|
|
exit 1
|
|
;;
|
|
esac
|