diff options
author | Peter Powell <petpow@saberuk.com> | 2018-04-12 00:30:53 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2018-04-12 00:30:53 +0100 |
commit | ecfa0d3847d96cd63ddb5c814f99d2020c8b0a2e (patch) | |
tree | b9fa542cd420a0a6725a643d59391cdb8715e284 /modulemanager | |
parent | 3243c7d238fb347f5a239b8bc34af47b1281d874 (diff) |
Fix ModuleManager's external source lists not working with HTTPS.
Diffstat (limited to 'modulemanager')
-rwxr-xr-x | modulemanager | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modulemanager b/modulemanager index bc4619408..f00234994 100755 --- a/modulemanager +++ b/modulemanager @@ -99,7 +99,7 @@ sub parse_url { $mod->{description} = $1; } elsif (/^mask (.*)/) { $mod->{mask} = $1; - } elsif (m#^source (http://\S+)#) { + } elsif (/^source (\S+)/) { parse_url $1; } else { print "Unknown line in $src: $_\n"; |