mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-10 01:34:12 +00:00
18 lines
379 B
Bash
18 lines
379 B
Bash
|
#!/bin/sh
|
||
|
cd "$(dirname "$0")"
|
||
|
|
||
|
dirbase="$(basename "$(pwd)")"
|
||
|
|
||
|
if [ -n "$M1N1_VERSION_TAG" ]; then
|
||
|
version="$M1N1_VERSION_TAG"
|
||
|
elif [ -e ".git" ]; then
|
||
|
version="$(git describe --tags --always --dirty)"
|
||
|
elif [ "${dirbase:0:5}" == "m1n1-" ]; then
|
||
|
version="${dirbase:5}"
|
||
|
version="v${version##v}"
|
||
|
else
|
||
|
version="unknown"
|
||
|
fi
|
||
|
|
||
|
echo "#define BUILD_TAG \"$version\""
|