mirror of
https://github.com/daylinmorgan/viv.git
synced 2024-11-09 19:13:14 -06:00
6 lines
245 B
Bash
Executable file
6 lines
245 B
Bash
Executable file
#!/usr/bin/env bash
|
|
TAG=$(git describe --tags --always --dirty=-dev)
|
|
VERSION="${TAG#v}"
|
|
if [[ "$(git diff --name-only HEAD HEAD~1)" == *"./src/viv/viv.py"* ]]; then
|
|
sed -i "s/__version__ = \".*\"/__version__ = \"$VERSION\"/g" src/viv/viv.py
|
|
fi
|