mirror of
git://code.qt.io/qt/qt5.git
synced 2026-02-01 19:36:04 +08:00
Replace the current license disclaimer in files by a SPDX-License-Identifier. License files are organized under LICENSES directory. Pick-to: 6.5 6.6 Task-number: QTBUG-67283 Task-number: QTBUG-108364 Change-Id: If26e4d35c780db4a7982bb84872b251dad24716e Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
32 lines
1.3 KiB
PowerShell
32 lines
1.3 KiB
PowerShell
# Copyright (C) 2017 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
|
|
|
$n = Get-Content "$PSScriptRoot\..\shared\http_proxy.txt"
|
|
$n = $n.Split('=')
|
|
New-Variable -Name $n[0] -Value $n[1]
|
|
|
|
if ([string]::IsNullOrEmpty($proxy)) {
|
|
Write-Host "No proxy is defined."
|
|
} else {
|
|
Write-Host "Checking proxy @ $proxy"
|
|
$proxy = $proxy -replace '"', ""
|
|
$webclient = New-Object System.Net.WebClient
|
|
$proxy_obj = New-Object System.Net.WebProxy($proxy)
|
|
$webclient.proxy = $proxy_obj
|
|
try {
|
|
$webpage = $webclient.DownloadData("http://proxy.intra.qt.io")
|
|
} catch {
|
|
$ErrorMessage = $_.Exception.Message
|
|
$FailedItem = $_.Exception.ItemName
|
|
$iserror = $true
|
|
}
|
|
if ($iserror -eq $true) {
|
|
Write-Host "Testing download with proxy does not work: $ErrorMessage, $FailedItem. Not setting proxy."
|
|
} else {
|
|
Write-Host "Setting proxy to: $proxy"
|
|
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings" -Name ProxyServer -Value "$proxy"
|
|
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings" -Name ProxyEnable -Value 1
|
|
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings" -Name ProxyOverride -Value 10.215
|
|
}
|
|
}
|