summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/get-version31
1 files changed, 17 insertions, 14 deletions
diff --git a/scripts/get-version b/scripts/get-version
index c59e2000b..4da018568 100755
--- a/scripts/get-version
+++ b/scripts/get-version
@@ -30,24 +30,27 @@ case $os in
v=$v0
;;
darwin|win)
+ # just the dots in the version string - this way we can
+ # count them
+ dots="${v0//[^.]}"
# split version string using a '-' separator
IFS='-'
set -- $v0
- v1=$1
- if [ $# -gt 1 ]; then
- v1=$v1.$2
- else
- v1=$v1.0
+ v=$1
+ # do we need to add another digit?
+ # We know there are 1 or 2 dots in $v, so if it's just one
+ # or we are trying to get to 4, add one digit
+ if [ ${#dots} -eq 1 ] || [ $os == "win" ]; then
+ if [ $# -gt 1 ]; then
+ v=$v.$2
+ else
+ v=$v.0
+ fi
+ fi
+ # and if it was just one dot and we want 4, at another 0
+ if [ ${#dots} -eq 1 ] && [ $os == "win" ]; then
+ v=$v.0
fi
- case $os in
- darwin)
- v=$v1
- ;;
- win)
- # always add '0' as the 4:th digit
- v=$v1.0
- ;;
- esac
;;
*)
v='git.missing.please.hardcode.version'