mirror of
https://github.com/daylinmorgan/viv.git
synced 2024-11-12 20:23:15 -06:00
5 lines
185 B
Bash
Executable file
5 lines
185 B
Bash
Executable file
#!/usr/bin/env sh
|
|
TAG=$(git describe --tags --always --dirty=-dev)
|
|
VERSION="${TAG#v}"
|
|
sed -i "s/__version__ = \".*\"/__version__ = \"$VERSION\"/g" src/viv/viv.py
|
|
git add src/viv/viv.py
|