mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-05 08:10:50 +00:00
5 lines
No EOL
179 B
Bash
Executable file
5 lines
No EOL
179 B
Bash
Executable file
#!/bin/sh
|
|
current=$(git describe --tags | grep -Eo '[0-9]*?\.[0-9]*?\.[0-9]*')
|
|
array=($(echo $current | tr '.' '\n'))
|
|
array[2]=$((array[2]+1))
|
|
echo $(IFS="." ; echo "${array[*]}") |