Browse Source

Wrap the download warning

master
LoganDark 2 years ago
parent
commit
e11cb30102
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      InstallWSL.psm1

+ 5
- 1
InstallWSL.psm1 View File

@ -207,7 +207,11 @@ Workflow Install-WSL {
}
}
Write-Output "`n`n`n`n`n`n`n`n`n`nWarning: The PowerShell window will display the download process for longer than usual. This is a Windows bug, and is only visual.`n"
# This is so that the progress indicator doesn't obstruct the text
Write-Output "`n`n`n`n`n`n`n`n`n"
Write-Output 'Warning: The PowerShell window will display the download process for longer than'
Write-Output 'usual. This is a Windows bug, and is only visual.'
Write-Output ''
$retrying = $True
while ($retrying) {


Loading…
Cancel
Save