From eb0fb524184baa44aef8eba9dfb07cdeaf279343 Mon Sep 17 00:00:00 2001 From: w00t Date: Tue, 4 Aug 2009 19:55:26 +0000 Subject: Allow for string comparison of git IDs. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11488 e03df62e-2008-0410-955e-edbf42e46eb7 --- modulemanager | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'modulemanager') 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; -- cgit v1.2.3