Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>2019-07-26 03:11:51 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2019-07-26 03:11:51 +0300
commit08bd3e5dc191fd26bb73c61fe4b7a846ab0aaa7a (patch)
treed1fa0ee7c193a87522f635d87e7a31b0c33d19ba /eng/common/pipeline-logging-functions.ps1
parentad2405761bbfd9b79315029e5c8b1a3dd642dfea (diff)
Update dependencies from https://github.com/dotnet/arcade build 20190725.3 (#15836)
- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19375.3 - Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19375.3
Diffstat (limited to 'eng/common/pipeline-logging-functions.ps1')
-rw-r--r--eng/common/pipeline-logging-functions.ps17
1 files changed, 4 insertions, 3 deletions
diff --git a/eng/common/pipeline-logging-functions.ps1 b/eng/common/pipeline-logging-functions.ps1
index 7b61376f8aa..af5f48aaceb 100644
--- a/eng/common/pipeline-logging-functions.ps1
+++ b/eng/common/pipeline-logging-functions.ps1
@@ -77,13 +77,14 @@ function Write-PipelineTaskError {
[string]$Name,
[string]$Value,
[switch]$Secret,
- [switch]$AsOutput)
-
+ [switch]$AsOutput,
+ [bool]$IsMultiJobVariable=$true)
+
if($ci) {
Write-LoggingCommand -Area 'task' -Event 'setvariable' -Data $Value -Properties @{
'variable' = $Name
'isSecret' = $Secret
- 'isOutput' = 'true'
+ 'isOutput' = $IsMultiJobVariable
} -AsOutput:$AsOutput
}
}