14-04-22 03:11 PM
14-04-22 04:04 PM
14-04-22 04:21 PM
@Eric Wilson,
Thank you very much for the immediate response!
I wasn't able to find a way to respond to your answer so using the "Answer" option instead...
I am not trying to export a previous version of the most recent package. The reason I used the /release flag is to be able to give a custom name to my release and the .bprelease file that gets created. I also tried to remove the /release flag but I get the exact same error.
When I run the command in a command line window it works perfectly creating the custom release name in BP as well as generating the custom named .bprelease file. When I run it through the Azure DevOps pipeline then I get this error. I am able to generate the .bpprocess or .bpobject files by calling the AutomateC from Azure pipeline but it fails only for the release ☹.
Any guidance on this will be fantastic. Thank you again!
Cheers,
Adi
14-04-22 04:32 PM
14-04-22 04:39 PM
16-04-22 08:01 PM
While I don't have an answer for you on how to put it into the pipeline tool, I can tell you why you are getting the error. If you look at the behavior of the /exportpackage action in AutomateC you can see that it displays all it's multiple status messages on 1 line which tells us that somewhere in the code the cursor is being reset to the starting position of the line. While this works when outputting to the display it can't be handled when the status is being redirected to a file.
The reason the /export action works is that there is only a single line of status being shown from AutomateC.
18-04-22 09:22 PM
18-04-22 09:47 PM