mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
4 lines
No EOL
169 B
Bash
Executable file
4 lines
No EOL
169 B
Bash
Executable file
current=$(git describe --tags | grep -Eo '[0-9]*?\.[0-9]*?\.[0-9]*')
|
|
array=($(echo $current | tr '.' '\n'))
|
|
array[1]=$((array[1]+1))
|
|
echo $(IFS="." ; echo "${array[*]}") |