summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorLuke Granger-Brown <git@lukegb.com>2021-07-03 01:32:12 +0100
committerGitHub <noreply@github.com>2021-07-03 01:32:12 +0100
commit59dd42012bf1ec9a95a275e7efd68f56950baf9c (patch)
tree1f0a6498331ef9fbe3e6ee17339c762373eff57e /pkgs/applications/editors
parente3b1c9e852f28cf6880ee433126fa9644c0ad8fb (diff)
parent9701c3d3f787b02bd6569618da489b5bd4e7d57d (diff)
downloadnixpkgs-59dd42012bf1ec9a95a275e7efd68f56950baf9c.tar
nixpkgs-59dd42012bf1ec9a95a275e7efd68f56950baf9c.tar.gz
nixpkgs-59dd42012bf1ec9a95a275e7efd68f56950baf9c.tar.bz2
nixpkgs-59dd42012bf1ec9a95a275e7efd68f56950baf9c.tar.lz
nixpkgs-59dd42012bf1ec9a95a275e7efd68f56950baf9c.tar.xz
nixpkgs-59dd42012bf1ec9a95a275e7efd68f56950baf9c.tar.zst
nixpkgs-59dd42012bf1ec9a95a275e7efd68f56950baf9c.zip
Merge pull request #128877 from raboof/jetbrains-update-script-https
jetbrains: use https for update script
Diffstat (limited to 'pkgs/applications/editors')
-rwxr-xr-xpkgs/applications/editors/jetbrains/update.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/editors/jetbrains/update.pl b/pkgs/applications/editors/jetbrains/update.pl
index cd3d2193a28..abb4e5f7223 100755
--- a/pkgs/applications/editors/jetbrains/update.pl
+++ b/pkgs/applications/editors/jetbrains/update.pl
@@ -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="([^"]+)"/;