ignore SNAPSHOT when comparing number
This commit is contained in:
parent
8c770b41ac
commit
ec7a6785d9
1 changed files with 1 additions and 1 deletions
2
install
2
install
|
|
@ -88,7 +88,7 @@ case "$(uname -m)" in
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# Ugly ugly conversion of version to a comparable number
|
# Ugly ugly conversion of version to a comparable number
|
||||||
IFS='.' read -ra VER <<< "$version"
|
IFS='.' read -ra VER <<< "${version//-SNAPSHOT/}"
|
||||||
vernum=$(printf "%03d%03d%03d" "${VER[0]}" "${VER[1]}" "${VER[2]}")
|
vernum=$(printf "%03d%03d%03d" "${VER[0]}" "${VER[1]}" "${VER[2]}")
|
||||||
|
|
||||||
if [[ 10#$vernum -le 10#000002013 ]]; then
|
if [[ 10#$vernum -le 10#000002013 ]]; then
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue