1
0
mirror of https://github.com/rancher/os.git synced 2025-05-31 19:06:17 +00:00
os/scripts/version

29 lines
598 B
Plaintext
Raw Normal View History

#!/bin/bash
2016-05-06 17:12:09 +00:00
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 "$VERSION" ]; then
if [[ -z "$DIRTY" && -n "$GIT_TAG" ]]; then
VERSION=$GIT_TAG
else
VERSION="${COMMIT}${DIRTY}"
fi
fi
INITRD=initrd-${VERSION}
export VERSION COMMIT INITRD
2016-05-06 17:12:09 +00:00
# Suffix
export SUFFIX=""
if [ -n "${ARCH}" ] && [ "${ARCH}" != "amd64" ]; then
# TODO: why is this not exported?
2016-05-06 17:12:09 +00:00
SUFFIX="_${ARCH}"
fi
echo " Building ${VERSION} from ${COMMIT} on ${ARCH}"