29 lines
741 B
Diff
29 lines
741 B
Diff
test/lib/aux.sh | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/test/lib/aux.sh b/test/lib/aux.sh
|
|
index 09ef9ed..0cc26a4 100644
|
|
--- a/test/lib/aux.sh
|
|
+++ b/test/lib/aux.sh
|
|
@@ -1387,17 +1387,17 @@ version_at_least() {
|
|
IFS=".-" read -r major minor revision <<< "$1"
|
|
shift
|
|
|
|
- test -z "$1" && return 0
|
|
+ test -z "${1:-}" && return 0
|
|
test -n "$major" || return 1
|
|
test "$major" -gt "$1" && return 0
|
|
test "$major" -eq "$1" || return 1
|
|
|
|
- test -z "$2" && return 0
|
|
+ test -n "$2" || return 0
|
|
test -n "$minor" || return 1
|
|
test "$minor" -gt "$2" && return 0
|
|
test "$minor" -eq "$2" || return 1
|
|
|
|
- test -z "$3" && return 0
|
|
+ test -n "$3" || return 0
|
|
test "$revision" -ge "$3" 2>/dev/null || return 1
|
|
}
|
|
#
|