提交 3d7c7493 编写于 作者: A Andrew Hall (METAL)

Remove function and inline

上级 5d2956fb
...@@ -66,15 +66,11 @@ if ($PSVersionTable.PSVersion.Major -lt "5") { ...@@ -66,15 +66,11 @@ if ($PSVersionTable.PSVersion.Major -lt "5") {
exit 1 exit 1
} }
function Check-MaxPath { $regKeyProperty = Get-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem -Name "LongPathsEnabled" -ErrorAction Ignore
$regOutput = Get-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem -Name "LongPathsEnabled" -ErrorAction Ignore if (($null -eq $regKeyProperty) -or ($regKeyProperty.LongPathsEnabled -ne 1)) {
if (($NULL -eq $regOutput) -or ($regOutput.LongPathsEnabled -ne 1)) { Write-Warning "LongPath is not enabled, you may experience build errors. You can avoid these by enabling LongPath with ``reg ADD HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem /v LongPathsEnabled /t REG_DWORD /d 1``"
Write-Warning "LongPath is not enabled, you may experience build errors. You can avoid these by enabling LongPath with ``reg ADD HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem /v LongPathsEnabled /t REG_DWORD /d 1``"
}
} }
Check-MaxPath
Set-StrictMode -version 2.0 Set-StrictMode -version 2.0
$ErrorActionPreference = "Stop" $ErrorActionPreference = "Stop"
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册