From 8983fb3ae2bae039bf5d9f4dca25d253db095c7d Mon Sep 17 00:00:00 2001 From: Shivam Mathur Date: Mon, 22 Feb 2021 09:59:07 +0530 Subject: [PATCH] Remove bintray from win32.ps1 --- src/scripts/win32.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/scripts/win32.ps1 b/src/scripts/win32.ps1 index 7e5d4b93..56d7d3d2 100644 --- a/src/scripts/win32.ps1 +++ b/src/scripts/win32.ps1 @@ -290,8 +290,8 @@ if ($null -eq $installed -or -not("$($installed.Version).".StartsWith(($version } if ($version -eq $master_version) { $version = 'master' - Invoke-WebRequest -UseBasicParsing -Uri https://dl.bintray.com/shivammathur/php/Install-PhpMaster.ps1 -OutFile $php_dir\Install-PhpMaster.ps1 > $null 2>&1 - & $php_dir\Install-PhpMaster.ps1 -Architecture $arch -ThreadSafe $ts -Path $php_dir + Invoke-WebRequest -UseBasicParsing -Uri https://github.com/shivammathur/php-builder-windows/releases/latest/download/Get-Php.ps1 -OutFile $php_dir\Get-Php.ps1 > $null 2>&1 + & $php_dir\Get-Php.ps1 -Architecture $arch -ThreadSafe $ts -Path $php_dir } else { Install-Php -Version $version -Architecture $arch -ThreadSafe $ts -InstallVC -Path $php_dir -TimeZone UTC -InitialPhpIni Production -Force > $null 2>&1 }