summaryrefslogtreecommitdiff
path: root/modulemanager
diff options
context:
space:
mode:
Diffstat (limited to 'modulemanager')
-rwxr-xr-xmodulemanager9
1 files changed, 9 insertions, 0 deletions
diff --git a/modulemanager b/modulemanager
index 255257f6b..96d58834d 100755
--- a/modulemanager
+++ b/modulemanager
@@ -102,6 +102,15 @@ my %todo = %installed;
sub ver_cmp {
($a,$b) = @_ if @_;
+
+ # string versions first, git IDs
+ if ($a =~ /[a-z0-9]{40}/ or $b =~ /[a-z0-9]{40}/)
+ {
+ # it's a string version. compare them as such.
+ return $a ne $b;
+ }
+
+ # else it's probably a numerical type version.. i.e. 1.0
my @a = split /\./, $a;
my @b = split /\./, $b;
push @a, 0 while $#a < $#b;