From 34972fcf79432fa8b807082fb54260c911c25264 Mon Sep 17 00:00:00 2001 From: Robert Stupp Date: Tue, 30 Jul 2024 13:55:40 +0200 Subject: [PATCH] Update IntelliJ logo URL to github/raw --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 38c650bdd..68d9d97ce 100644 --- a/build.gradle +++ b/build.gradle @@ -136,7 +136,7 @@ if (System.getProperty("idea.sync.active").asBoolean()) { ideaDir.file(".name").asFile.text = ideName def icon = ideaDir.file("icon.png").asFile if (!icon.exists()) { - def img = new URI("https://avatars.githubusercontent.com/u/173406119?s=200&v=4").toURL().openConnection().getInputStream().bytes + def img = new URI("https://raw.githubusercontent.com/polaris-catalog/polaris/main/docs/img/logos/polaris-brandmark.png").toURL().openConnection().getInputStream().bytes ideaDir.file("icon.png").asFile.newOutputStream().with { out -> out.write(img) } }