From ecfa0d3847d96cd63ddb5c814f99d2020c8b0a2e Mon Sep 17 00:00:00 2001 From: Peter Powell Date: Thu, 12 Apr 2018 00:30:53 +0100 Subject: Fix ModuleManager's external source lists not working with HTTPS. --- modulemanager | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modulemanager') 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"; -- cgit v1.2.3