Update install.ps1

This commit is contained in:
FusionPBX 2017-12-30 17:25:02 -07:00 committed by GitHub
parent 632bba4c46
commit b9497a518d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -244,10 +244,10 @@ Function Install-PostgreSQL() {
}
Function Install-Git(){
if ($env:PROCESSOR_ARCHITECTURE -eq "x86") {
$url = "https://github.com/git-for-windows/git/releases/download/v2.6.4.windows.1/Git-2.6.4-32-bit.exe"
Ω $url = "https://github.com/git-for-windows/git/releases/download/v2.15.1.windows.2/Git-2.15.1.2-32-bit.exe"
}
else {
$url = "https://github.com/git-for-windows/git/releases/download/v2.6.4.windows.1/Git-2.6.4-64-bit.exe"
$url = "https://github.com/git-for-windows/git/releases/download/v2.15.1.windows.2/Git-2.15.1.2-64-bit.exe"
}
Write-Host Download Git from $url -ForegroundColor Cyan