You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/amazonq/codetransform/jetbrains-community/src/software/aws/toolkits/jetbrains/services/codemodernizer/model/CodeModernizerSessionContext.kt
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -234,7 +234,6 @@ data class CodeModernizerSessionContext(
234
234
}
235
235
236
236
val zipSources =File(ZIP_SOURCES_PATH)
237
-
val depSources =File(ZIP_DEPENDENCIES_PATH)
238
237
val outputFile = createTemporaryZipFile { zip ->
239
238
// 1) Manifest file
240
239
var manifest =ZipManifest(transformCapabilities = transformCapabilities, customBuildCommand = customBuildCommand)
Copy file name to clipboardExpand all lines: plugins/amazonq/codetransform/jetbrains-community/src/software/aws/toolkits/jetbrains/services/codemodernizer/utils/CodeTransformApiUtils.kt
+40-42Lines changed: 40 additions & 42 deletions
Original file line number
Diff line number
Diff line change
@@ -170,12 +170,8 @@ suspend fun attemptLocalBuild(plan: TransformationPlan, jobId: JobId, project: P
170
170
if (artifactId !=null) {
171
171
val clientInstructionsPath = downloadClientInstructions(jobId, artifactId, project)
172
172
getLogger<CodeModernizerManager>().info { "Downloaded client instructions for job ${jobId.id} and artifact $artifactId at: $clientInstructionsPath" }
173
-
if (clientInstructionsPath.toFile().readText().trim().isNotEmpty()) {
0 commit comments