Skip to content

Commit 14265e9

Browse files
authored
chore: unblock release (#305)
1 parent fa3bd83 commit 14265e9

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

codegen/sdk-codegen/build.gradle.kts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,10 @@ fun generateSmithyBuild(services: List<AwsService>): String {
8585
// escape windows paths for valid json
8686
val absModelPath = service.modelFile.absolutePath.replace("\\", "\\\\")
8787
val importPaths = mutableListOf(absModelPath)
88-
if (file(service.modelExtrasDir).exists()) {
89-
importPaths.add(service.modelExtrasDir.replace("\\", "\\\\"))
90-
}
88+
//TODO: Re-enable after we figure out how to release
89+
// if (file(service.modelExtrasDir).exists()) {
90+
// importPaths.add(service.modelExtrasDir.replace("\\", "\\\\"))
91+
// }
9192
val imports = importPaths.joinToString { "\"$it\"" }
9293
"""
9394
"${service.projectionName}": {

0 commit comments

Comments
 (0)