mirror of
https://github.com/microsoft/GSL.git
synced 2024-11-03 17:56:43 -05:00
git pull --quiet
This commit is contained in:
parent
337a03cd52
commit
bce6ed2338
10
appveyor.yml
10
appveyor.yml
@ -42,16 +42,18 @@ install:
|
|||||||
}
|
}
|
||||||
$env:PATH="C:\cmake-3.8.0-win32-x86\bin;$env:PATH"
|
$env:PATH="C:\cmake-3.8.0-win32-x86\bin;$env:PATH"
|
||||||
}
|
}
|
||||||
# Workaround for lld bug with vcpkg integration
|
# Workaround for lld bug with vcpkg integration
|
||||||
|
- ps: |
|
||||||
if ($env:USE_TOOLSET -eq "LLVM" -and
|
if ($env:USE_TOOLSET -eq "LLVM" -and
|
||||||
(Get-Content C:\Tools\vcpkg\toolsrc\VERSION.txt).Replace('.','').Trim('"') -lt 20181020
|
(Get-Content C:\Tools\vcpkg\toolsrc\VERSION.txt).Replace('.','').Trim('"') -lt 20181020
|
||||||
) {
|
) {
|
||||||
echo "Updating vcpkg..."
|
echo "Updating vcpkg..."
|
||||||
cd C:\Tools\vcpkg
|
cd C:\Tools\vcpkg
|
||||||
git pull > $NULL
|
git pull --quiet
|
||||||
cd "$env:APPVEYOR_BUILD_FOLDER"
|
cd "$env:APPVEYOR_BUILD_FOLDER"
|
||||||
} else { echo "==> vcpkg has been updated, please remove the workaround from appveyor.yml." }
|
} else {
|
||||||
# /Workaround
|
echo "==> vcpkg has been updated, please remove the workaround from appveyor.yml."
|
||||||
|
}
|
||||||
|
|
||||||
before_build:
|
before_build:
|
||||||
- ps: |
|
- ps: |
|
||||||
|
Loading…
Reference in New Issue
Block a user