mirror of
https://github.com/vicr123/the-libs.git
synced 2025-01-22 10:22:03 -05:00
5 lines
175 B
Text
5 lines
175 B
Text
function git_calculate_version {
|
|
version_string="$(git describe --tags)"
|
|
version_string_substituted=${version_string//-/.}
|
|
echo ${version_string_substituted#*v}
|
|
}
|