Skip to content

Commit

Permalink
#295 Fix user-visible plugin name
Browse files Browse the repository at this point in the history
  • Loading branch information
lancelote committed Aug 28, 2024
1 parent df0de8b commit 3d8dd0a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ repositories {
}
}

val pluginName = "intellij-micropython"

plugins {
kotlin("jvm") version "2.0.20"
id("org.jetbrains.intellij.platform") version "2.0.1"
Expand Down Expand Up @@ -41,7 +39,7 @@ java {

intellijPlatform {
pluginConfiguration {
name = pluginName
name = "MicroPython"
}

instrumentCode = false
Expand All @@ -61,7 +59,7 @@ tasks {
}
prepareSandbox {
from("$rootDir") {
into(pluginName)
into("intellij-micropython")
include("typehints/")
include("scripts/")
}
Expand Down

0 comments on commit 3d8dd0a

Please sign in to comment.