microsoft/azure-pipelines-extensions

Removing the horizontal bar from AdditionalArguments have broken releases

JordanMaclachlan-RLG opened this issue · 1 comments

Hi,

We have come across an issue where the latest commit has broken loads of our pipelines. In order to manage the IIS deployment we use an appcmd to create bindings in the website for us. The appcmd uses | exit 0 to fail quietly if the binding is already there. This is now now working and all the manage IIS tasks we have are now failing instead of passing.

I am hoping that we can either get this change reverted or at-least change this to be a major change as the pipe character is a valid appcmd character that can be used for many different reasons. This is what is now failing for us:

set site /site.name:"Blah" /+bindings.[protocol='http',bindingInformation=':12345:'] | exit 0

What was the reason for not allowing the pipe character?

Thanks

Jordan

If this is not reverted, how are we able to use conditional commands in the appcmd?