File tree Expand file tree Collapse file tree 4 files changed +14
-12
lines changed Expand file tree Collapse file tree 4 files changed +14
-12
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "type" : " bugfix" ,
3
+ "description" : " Fix scripts missing when connecting through JetBrains Gateway (#4188)"
4
+ }
Original file line number Diff line number Diff line change @@ -50,12 +50,11 @@ intellij {
50
50
}
51
51
52
52
tasks.prepareSandbox {
53
- from(resharperDlls) {
54
- into(" aws-toolkit-jetbrains/dotnet" )
55
- }
56
- from(gatewayResources) {
57
- into(" aws-toolkit-jetbrains/gateway-resources" )
58
- }
53
+ intoChild(pluginName.map { " $it /dotnet" })
54
+ .from(resharperDlls)
55
+
56
+ intoChild(pluginName.map { " $it /gateway-resources" })
57
+ .from(gatewayResources)
59
58
}
60
59
61
60
tasks.publishPlugin {
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ plugins {
14
14
}
15
15
16
16
intellij {
17
+ pluginName.set(" aws-toolkit-jetbrains" )
17
18
type.set(" GW" )
18
19
}
19
20
@@ -96,9 +97,8 @@ tasks.jar {
96
97
}
97
98
98
99
tasks.withType<PrepareSandboxTask >().all {
99
- from(gatewayResourcesDir) {
100
- into(" aws-toolkit-jetbrains/gateway-resources" )
101
- }
100
+ intoChild(pluginName.map { " $it /gateway-resources" })
101
+ .from(gatewayResourcesDir)
102
102
}
103
103
104
104
tasks.prepareSandbox {
Original file line number Diff line number Diff line change @@ -308,9 +308,8 @@ intellij {
308
308
tasks.withType<PrepareSandboxTask >().all {
309
309
dependsOn(resharperDllsDir)
310
310
311
- from(resharperDllsDir) {
312
- into(" aws-toolkit-jetbrains/dotnet" )
313
- }
311
+ intoChild(pluginName.map { " $it /dotnet" })
312
+ .from(resharperDllsDir)
314
313
}
315
314
316
315
tasks.compileKotlin {
You can’t perform that action at this time.
0 commit comments