We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddfd903 commit 75091f6Copy full SHA for 75091f6
build.gradle.kts
@@ -199,7 +199,7 @@ intellijPlatform {
199
projectName = "IntelliJ-EmmyLua2"
200
201
pluginConfiguration {
202
- name = "EmmyLua2"
+ name = "IntelliJ-EmmyLua2"
203
}
204
205
publishing {
@@ -244,14 +244,15 @@ tasks {
244
// 准备沙盒环境
245
prepareSandbox {
246
doLast {
247
+ val pluginNameValue = "IntelliJ-EmmyLua2"
248
copy {
249
from("src/main/resources/debugger")
- into("$destinationDir/${pluginName.get()}/debugger")
250
+ into("$destinationDir/$pluginNameValue/debugger")
251
252
253
254
from("src/main/resources/server")
- into("$destinationDir/${pluginName.get()}/server")
255
+ into("$destinationDir/$pluginNameValue/server")
256
257
258
0 commit comments