You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running a pipeline and there is no patch, the task sets the patch name variable to null. If I want to set up a pipeline capable of running both with and without patches, this doesn't work.
If the task.setvariable moved to within the if-statement this would resolve the issue, or if a nulloremtpy is implemented on line 57:
if ([string]::IsNullOrEmpty($patchVariableName))
{
Write-Host "##vso[task.setvariable variable=$patchVariableName]$name"
}
The text was updated successfully, but these errors were encountered:
When running a pipeline and there is no patch, the task sets the patch name variable to null. If I want to set up a pipeline capable of running both with and without patches, this doesn't work.
If the task.setvariable moved to within the if-statement this would resolve the issue, or if a nulloremtpy is implemented on line 57:
The text was updated successfully, but these errors were encountered: