This is an automated email from the ASF dual-hosted git repository.
snazy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push:
new f7745c2ce IntelliJ: fix project icon in IJ project list (#2366)
f7745c2ce is described below
commit f7745c2ce446482f8dae229cd10444309fd848b9
Author: Robert Stupp <[email protected]>
AuthorDate: Fri Aug 15 18:08:52 2025 +0200
IntelliJ: fix project icon in IJ project list (#2366)
... copy source has changed
---
build.gradle.kts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build.gradle.kts b/build.gradle.kts
index f3421770f..df3a72f43 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -50,7 +50,7 @@ if (System.getProperty("idea.sync.active").toBoolean()) {
val icon = ideaDir.file("icon.png").asFile
if (!icon.exists()) {
copy {
- from("docs/img/logos/polaris-brandmark.png")
+ from("site/static/img/logos/polaris-brandmark.png")
into(ideaDir)
rename { _ -> "icon.png" }
}