diff options
author | Arne Georg Gleditsch <argggh@lxr.linpro.no> | 2011-09-22 14:49:40 +0200 |
---|---|---|
committer | Arne Georg Gleditsch <argggh@lxr.linpro.no> | 2011-09-22 14:49:40 +0200 |
commit | 84fc580e278aefda62c537a05661db8ae39e55e0 (patch) | |
tree | 71c2ce4cbd570e7523c6bf72d3c191c6e27d8af8 /lib/LXRng/Context.pm | |
parent | cd756357a261aec69995b42d1e8b8b47903e6706 (diff) |
Make "+" a legal character in release strings.
Diffstat (limited to 'lib/LXRng/Context.pm')
-rw-r--r-- | lib/LXRng/Context.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/LXRng/Context.pm b/lib/LXRng/Context.pm index 959151b..ab8d9f2 100644 --- a/lib/LXRng/Context.pm +++ b/lib/LXRng/Context.pm @@ -86,7 +86,7 @@ sub new { $$self{'tree'} = $args{'tree'}; } - if ($$self{'tree'} =~ s/[+]([^+]*)$//) { + if ($$self{'tree'} =~ s/[+](.+)$//) { $$self{'release'} = $1 if $1 ne '*'; } |