1
0
mirror of https://github.com/rancher/os-kernel.git synced 2025-05-06 06:06:18 +00:00
os-kernel/scripts/version
2016-07-10 05:07:19 +00:00

15 lines
294 B
Bash
Executable File

#!/bin/bash
if [ -n "$(git status --porcelain --untracked-files=no)" ]; then
DIRTY="-dirty"
fi
COMMIT=$(git rev-parse --short HEAD)
GIT_TAG=$(git tag -l --contains HEAD | head -n 1)
if [[ -z "$DIRTY" && -n "$GIT_TAG" ]]; then
VERSION=$GIT_TAG
else
VERSION="${COMMIT}${DIRTY}"
fi