summaryrefslogtreecommitdiff
path: root/modulemanager
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2018-04-12 00:30:53 +0100
committerPeter Powell <petpow@saberuk.com>2018-04-12 00:30:53 +0100
commitecfa0d3847d96cd63ddb5c814f99d2020c8b0a2e (patch)
treeb9fa542cd420a0a6725a643d59391cdb8715e284 /modulemanager
parent3243c7d238fb347f5a239b8bc34af47b1281d874 (diff)
Fix ModuleManager's external source lists not working with HTTPS.
Diffstat (limited to 'modulemanager')
-rwxr-xr-xmodulemanager2
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";