gradio-parking / .husky /pre-commit
go2sujeet
Added .history and node_modules/ to .gitignore
80a32bf
raw
history blame
157 Bytes
#!/bin/sh
# Increment version number
version=$(cat version.txt)
new_version=$(echo $version + 0.01 | bc)
echo $new_version > version.txt
git add version.txt