jetbrains: use https in update script

This commit is contained in:
Arnout Engelen 2021-07-01 13:42:41 +02:00
parent 05af00f0a1
commit 9701c3d3f7
No known key found for this signature in database
GPG key ID: 061107B0F74A6DAA

View file

@ -14,7 +14,7 @@ sub semantic_less {
}
sub get_latest_versions {
my @channels = get("http://www.jetbrains.com/updates/updates.xml") =~ /(<channel .+?<\/channel>)/gs;
my @channels = get("https://www.jetbrains.com/updates/updates.xml") =~ /(<channel .+?<\/channel>)/gs;
my %h = {};
for my $ch (@channels) {
my ($id) = $ch =~ /^<channel id="[^"]+" name="([^"]+)"/;