btstack/doc/manual/update_mkdocs_yml.sh

18 lines
349 B
Bash
Executable File

#!/usr/bin/env sh
# get commit and tag
tag=`git tag --points-at HEAD`
commit=`git rev-parse --short HEAD`
branch=`git branch | sed -n -e 's/^\* \(.*\)/\1/p'`
# use tag if available
if [ -z "$tag" ]
then
version="$branch-$commit"
else
version=$tag
fi
# create mkdocs-temp.yml
sed -e "s|VERSION|$version|" mkdocs-template.yml > mkdocs-temp.yml