#!/usr/bin/env sh # get commit and tag tag=`git tag --points-at HEAD` commit=`git rev-parse --short HEAD` # use tag if available if [ -z "$tag" ] then version="Commit $commit" else version="Version $tag ($commit)" fi # create mkdocs.yml sed -e "s|VERSION|$version|" btstack_gettingstarted.tex > latex/btstack_gettingstarted.tex