File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -85,10 +85,9 @@ 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- // TODO: Re-enable after we figure out how to release
89- // if (file(service.modelExtrasDir).exists()) {
90- // importPaths.add(service.modelExtrasDir.replace("\\", "\\\\"))
91- // }
88+ if (file(service.modelExtrasDir).exists()) {
89+ importPaths.add(service.modelExtrasDir.replace(" \\ " , " \\\\ " ))
90+ }
9291 val imports = importPaths.joinToString { " \" $it \" " }
9392 """
9493 "${service.projectionName} ": {
@@ -190,6 +189,7 @@ task("stageSdks") {
190189 from(" ${it.outputDir} " )
191190 into(" ${it.destinationDir} " )
192191 exclude(" Package.swift" )
192+ exclude(" *Tests" )
193193 }
194194 }
195195 }
You can’t perform that action at this time.
0 commit comments