Skip to content

Commit

Permalink
refactor(task): enable codeOnly mode for Dockerfile generation task
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Nov 21, 2024
1 parent 5fae9d7 commit ac99c93
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class GenerateDockerfileAction : AnAction("Generate Dockerfile") {

val msgs = templateRender.buildMsgs(template)

val task: Task.Backgroundable = FileGenerateTask(project, msgs, "Dockerfile")
val task: Task.Backgroundable = FileGenerateTask(project, msgs, "Dockerfile", codeOnly = true)
ProgressManager.getInstance()
.runProcessWithProgressAsynchronously(task, BackgroundableProcessIndicator(task))
}
Expand Down

0 comments on commit ac99c93

Please sign in to comment.