1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-03 04:48:52 -05:00

ci: upgrade git on appveyor to version v2.21.0.windows.1

This commit is contained in:
Bert Belder 2019-03-04 19:25:04 -08:00
parent e23d0b3452
commit 25359bcc03
No known key found for this signature in database
GPG key ID: 7A77887B2E2ED461

View file

@ -95,6 +95,16 @@ init:
# Load utility functions # Load utility functions
- ps: Invoke-Expression $env:PS_UTILS - ps: Invoke-Expression $env:PS_UTILS
# Upgrade git.
# TODO: remove when Appveyor upgrades to version 2.19.2.windows.1 or higher.
- ps: |-
$git_setup_uri = "https://github.com/git-for-windows/git/releases/" +
"download/v2.21.0.windows.1/Git-2.21.0-64-bit.exe"
Invoke-WebRequest -Uri $git_setup_uri -OutFile "$env:TEMP\git-setup.exe"
Start-Process -FilePath "$env:TEMP\git-setup.exe" `
-ArgumentList "/verysilent" `
-Wait
# Make git check out symlinks (not placeholder text files). # Make git check out symlinks (not placeholder text files).
- git config --global core.symlinks true - git config --global core.symlinks true