Skip to content

Commit

Permalink
Merge pull request #161 from ayeshLK/main
Browse files Browse the repository at this point in the history
Use exec-result for command line task execution
  • Loading branch information
ayeshLK authored Jul 1, 2024
2 parents aa12928 + 6d1b55c commit 62f4594
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/groovy/io/ballerina/plugin/BallerinaPlugin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ class BallerinaPlugin implements Plugin<Project> {
def outStream = new ByteArrayOutputStream()
def errStream = new ByteArrayOutputStream()
// Pack bala first
project.exec {
def execResults = project.exec {
workingDir project.projectDir
environment 'JAVA_OPTS', '-DBALLERINA_DEV_COMPILE_BALLERINA_ORG=true'
if (buildOnDocker) {
Expand Down Expand Up @@ -296,7 +296,7 @@ class BallerinaPlugin implements Plugin<Project> {
}
}
}
println("StdOut: ${outStream.toString()} \n ErrOut: ${errStream.toString()}\n")
println("Result: ${execResults.exitValue} ${execResults.properties}\nStdOut: ${outStream.toString()} \nErrOut: ${errStream.toString()}\n")

def balaPath = "$project.projectDir/${balBuildTarget}/bala"
def balaDir = new File(balaPath)
Expand Down

0 comments on commit 62f4594

Please sign in to comment.