mirror of
https://github.com/bluekitchen/btstack.git
synced 2024-12-28 15:20:39 +00:00
17 lines
277 B
Bash
Executable File
17 lines
277 B
Bash
Executable File
#!/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
|
|
else
|
|
version=$tag
|
|
fi
|
|
|
|
# create mkdocs.yml
|
|
sed -e "s|VERSION|$version|" mkdocs-template.yml > mkdocs.yml
|