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

github.com/mono/linker.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-12-06 16:25:26 +0300
committerGitHub <noreply@github.com>2019-12-06 16:25:26 +0300
commit772a667799d435d22ac47f9257eda45039632d46 (patch)
tree494b095172910064589d078e111b74daa4ef1f97 /eng/common
parent8f948ead06bd4515fd1e3c54654b6e73efb366fd (diff)
Update dependencies from https://github.com/dotnet/arcade build 20191205.6 (#847)
- Microsoft.DotNet.Arcade.Sdk - 5.0.0-beta.19605.6
Diffstat (limited to 'eng/common')
-rw-r--r--eng/common/pipeline-logging-functions.ps14
1 files changed, 2 insertions, 2 deletions
diff --git a/eng/common/pipeline-logging-functions.ps1 b/eng/common/pipeline-logging-functions.ps1
index 2688c389b..a3e1317ad 100644
--- a/eng/common/pipeline-logging-functions.ps1
+++ b/eng/common/pipeline-logging-functions.ps1
@@ -101,7 +101,7 @@ function Write-PipelineTaskError {
[string]$Path,
[switch]$AsOutput)
- if(-Not (Test-Path variable:ci) -Or !$ci) {
+ if((Test-Path variable:ci) -And $ci) {
Write-LoggingCommand -Area 'task' -Event 'prependpath' -Data $Path -AsOutput:$AsOutput
}
}
@@ -237,4 +237,4 @@ function Write-LogIssue {
}
Write-Host $command -ForegroundColor $foregroundColor -BackgroundColor $backgroundColor
-} \ No newline at end of file
+}