diff options
author | Arne Georg Gleditsch <argggh@lxr.linpro.no> | 2007-12-04 16:21:40 +0100 |
---|---|---|
committer | Arne Georg Gleditsch <argggh@lxr.linpro.no> | 2007-12-04 16:21:40 +0100 |
commit | 1379bdb6e5b40d205ba92fc1a3747d70094a05d9 (patch) | |
tree | ad21c1c1af0ebb3c6925a2c710bbfdc744e96379 | |
parent | e5ab9bf906f39f1cb1f5e93eff42aaaba5dd3a3e (diff) | |
parent | f6b264b55a9aef5c1977a2687c5a778e6ab63881 (diff) |
Merge branch 'master' of /home/argggh/git/lxrng/
-rw-r--r-- | lib/LXRng/Repo/Plain.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/LXRng/Repo/Plain.pm b/lib/LXRng/Repo/Plain.pm index 46fb3f4..f39daa5 100644 --- a/lib/LXRng/Repo/Plain.pm +++ b/lib/LXRng/Repo/Plain.pm @@ -21,7 +21,7 @@ sub cache_key { sub allversions { my ($self) = @_; - my @ver = (sort + my @ver = (sort { $b cmp $a } grep { $_ ne "." and $_ ne ".." } map { substr($_, length($$self{'root'})) =~ /([^\/]*)/; $1 } glob($$self{'root'}."*/")); |