Hello,
Is there any way to suppress message boxes that pop up if there is an error. Currently they are blocking our automation pipelines since the require a human to confirm.
I would just like to catch the error and handle the exception.
Here is an example:
Best regards,
Anton
Hello, could include the command you are running? Is this a “cm diff” command? what type of files are you diffing?
Here is the command we run:
cm merge "br:/contentDevelopment_CTDEV" --to="br:/contentDevelopment_CTDEV/Nightly_references" --merge --automaticresolution=all-src --keepsource -c "Jenkins - Merge from ctdev"
The files it’s trying to merge is a large amount of big .json files, since this is our cooker which is building scenes. Multiple of them run at the same time therefore merge conflicts happen.
We have now changed the command to the following in hope of avoiding the message box:
cm merge "br:/contentDevelopment_CTDEV" --to="br:/contentDevelopment_CTDEV/Nightly_references" --merge --silent --nointeractiveresolution --automaticresolution=all-src --keepsource -c "Jenkins - Merge from ctdev"
-Anton