Skip to content
Snippets Groups Projects
Commit 86da5a10 authored by Natanael Copa's avatar Natanael Copa
Browse files

scripts/mkimage: fix generation of version string

use git tag if we are at a given tag. use timestamp otherwise
parent ac210c74
No related branches found
No related tags found
No related merge requests found
......@@ -34,12 +34,6 @@ fi
[ -n "$arch" ] || arch=$(apk --print-arch)
if [ -z "$release" ]; then
release=$(git describe --always)
if git describe --exact-match >/dev/null 2>&1; then
release=${release#v}
fi
fi
for image; do
filepath="$releasedir/${image##*/}"
......
......@@ -29,7 +29,6 @@ _simulate=""
_checksum=""
OUTDIR="$PWD"
RELEASE="${build_date}"
msg() {
if [ -n "$quiet" ]; then return 0; fi
......@@ -208,6 +207,15 @@ while [ $# -gt 0 ]; do
esac
done
if [ -z "$RELEASE" ]; then
if git describe --exact-match >/dev/null 2>&1; then
RELEASE=$(git describe --always)
RELEASE=${RELEASE#v}
else
RELEASE="${build_date}"
fi
fi
# setup defaults
if [ -z "$WORKDIR" ]; then
WORKDIR="$(mktemp -d -t mkimage.XXXXXX)"
......@@ -253,3 +261,4 @@ for ARCH in $req_arch; do
(build_profile) || exit 1
done
done
echo "Images generated in $OUTDIR"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment