We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa3bd83 commit 14265e9Copy full SHA for 14265e9
codegen/sdk-codegen/build.gradle.kts
@@ -85,9 +85,10 @@ fun generateSmithyBuild(services: List<AwsService>): String {
85
// escape windows paths for valid json
86
val absModelPath = service.modelFile.absolutePath.replace("\\", "\\\\")
87
val importPaths = mutableListOf(absModelPath)
88
- if (file(service.modelExtrasDir).exists()) {
89
- importPaths.add(service.modelExtrasDir.replace("\\", "\\\\"))
90
- }
+//TODO: Re-enable after we figure out how to release
+// if (file(service.modelExtrasDir).exists()) {
+// importPaths.add(service.modelExtrasDir.replace("\\", "\\\\"))
91
+// }
92
val imports = importPaths.joinToString { "\"$it\"" }
93
"""
94
"${service.projectionName}": {
0 commit comments