Skip to content

Commit

Permalink
echo stdout
Browse files Browse the repository at this point in the history
  • Loading branch information
ovcharenko-di committed Nov 21, 2024
1 parent 146c488 commit 29574e2
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,10 @@ class NativeEdtCliConverter implements IEdtCliEngine {

def edtcliCommand = "1cedtcli -v -data \"$workspaceLocation\" -vmargs -Xmx30g -Dfile.encoding=UTF-8 -Dsun.jnu.encoding=UTF8 -Dosgi.nl=ru -Duser.language=ru -command validate --file \"$resultFile\" $projectList"
steps.catchError {
steps.cmd(edtcliCommand)
steps.cmd("1cedtcli -v -data \"$workspaceLocation\" -command project --details")
def stdout = steps.cmd(edtcliCommand, false, true)
steps.echo(stdout)
stdout = steps.cmd("1cedtcli -v -data \"$workspaceLocation\" -command project --details", false, true)
steps.echo(stdout)
}

}
Expand Down

0 comments on commit 29574e2

Please sign in to comment.