Skip to content

Commit

Permalink
[gradle] Print value of outputDir correctly in gradle plugin (OpenAPI…
Browse files Browse the repository at this point in the history
  • Loading branch information
kierans authored and michaelpro1 committed May 7, 2020
1 parent ad17267 commit d7c038e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ open class GenerateTask : DefaultTask() {

DefaultGenerator().opts(clientOptInput).generate()

out.println("Successfully generated code to $outputDir")
out.println("Successfully generated code to ${outputDir.get()}")
} catch (e: RuntimeException) {
throw GradleException("Code generation failed.", e)
}
Expand Down

0 comments on commit d7c038e

Please sign in to comment.