From b9497a518d18dc7a3f6d4c032d8a99f218cf854f Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Sat, 30 Dec 2017 17:25:02 -0700 Subject: [PATCH] Update install.ps1 --- windows/install.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/windows/install.ps1 b/windows/install.ps1 index 5ed0a01..f92a968 100644 --- a/windows/install.ps1 +++ b/windows/install.ps1 @@ -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