mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-10 09:44:13 +00:00
8dd002d4f7
Signed-off-by: Tobias Heider <me@tobhe.de>
17 lines
413 B
Bash
Executable file
17 lines
413 B
Bash
Executable file
#!/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 [ "$(echo "${dirbase}" | cut -c1-5)" = "m1n1-" ]; then
|
|
version=$(echo "${dirbase}" | cut -c6-)
|
|
version="v${version##v}"
|
|
else
|
|
version="unknown"
|
|
fi
|
|
|
|
echo "#define BUILD_TAG \"$version\""
|