summaryrefslogtreecommitdiff
path: root/eng/common
diff options
context:
space:
mode:
authordotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>2019-06-06 07:48:11 -0700
committerJan Kotas <jkotas@microsoft.com>2019-06-06 07:48:11 -0700
commit0b520b36b4516749a2e4416570f666ba5688da62 (patch)
treec2616a014c6ebb0fb1aedffedc29c9c74f9e4171 /eng/common
parent66b17b66262a7194ae8f3ba7705877cdf935ab07 (diff)
downloadcoreclr-0b520b36b4516749a2e4416570f666ba5688da62.tar.gz
coreclr-0b520b36b4516749a2e4416570f666ba5688da62.tar.bz2
coreclr-0b520b36b4516749a2e4416570f666ba5688da62.zip
[master] Update dependencies from dotnet/arcade (#24969)
* Update dependencies from https://github.com/dotnet/arcade build 20190605.13 - Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19305.13 - Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19305.13 - Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19305.13 - Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19305.13
Diffstat (limited to 'eng/common')
-rwxr-xr-xeng/common/cross/build-rootfs.sh2
-rw-r--r--eng/common/tools.ps14
2 files changed, 3 insertions, 3 deletions
diff --git a/eng/common/cross/build-rootfs.sh b/eng/common/cross/build-rootfs.sh
index 34d3d2ba1f..7c4e122651 100755
--- a/eng/common/cross/build-rootfs.sh
+++ b/eng/common/cross/build-rootfs.sh
@@ -181,7 +181,7 @@ if [ -z "$__RootfsDir" ] && [ ! -z "$ROOTFS_DIR" ]; then
fi
if [ -z "$__RootfsDir" ]; then
- __RootfsDir="$__CrossDir/rootfs/$__BuildArch"
+ __RootfsDir="$__CrossDir/../../../.tools/rootfs/$__BuildArch"
fi
if [ -d "$__RootfsDir" ]; then
diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1
index 3983d719be..538a0262b5 100644
--- a/eng/common/tools.ps1
+++ b/eng/common/tools.ps1
@@ -107,11 +107,11 @@ function Write-PipelineTaskError {
if(!$ci) {
if($Type -eq 'error') {
- Write-Error $Message
+ Write-Host $Message -ForegroundColor Red
return
}
elseif ($Type -eq 'warning') {
- Write-Warning $Message
+ Write-Host $Message -ForegroundColor Yellow
return
}
}