We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b89bc9 commit e52c24cCopy full SHA for e52c24c
1 file changed
bin/install.ps1
@@ -19,6 +19,13 @@ if((get-executionpolicy) -gt 'RemoteSigned') {
19
break
20
}
21
22
+if([System.Enum]::GetNames([System.Net.SecurityProtocolType]) -notcontains 'Tls12') {
23
+ Write-Output "Scoop requires at least .NET Framework 4.5"
24
+ Write-Output "Please download and install it first:"
25
+ Write-Output "https://www.microsoft.com/net/download"
26
+ break
27
+}
28
+
29
# get core functions
30
$core_url = 'https://raw.github.com/lukesampson/scoop/master/lib/core.ps1'
31
Write-Output 'Initializing...'
0 commit comments