Skip to content

Commit 3d8dd0a

Browse files
committed
#295 Fix user-visible plugin name
1 parent df0de8b commit 3d8dd0a

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

build.gradle.kts

+2-4
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ repositories {
99
}
1010
}
1111

12-
val pluginName = "intellij-micropython"
13-
1412
plugins {
1513
kotlin("jvm") version "2.0.20"
1614
id("org.jetbrains.intellij.platform") version "2.0.1"
@@ -41,7 +39,7 @@ java {
4139

4240
intellijPlatform {
4341
pluginConfiguration {
44-
name = pluginName
42+
name = "MicroPython"
4543
}
4644

4745
instrumentCode = false
@@ -61,7 +59,7 @@ tasks {
6159
}
6260
prepareSandbox {
6361
from("$rootDir") {
64-
into(pluginName)
62+
into("intellij-micropython")
6563
include("typehints/")
6664
include("scripts/")
6765
}

0 commit comments

Comments
 (0)