Files
runner-images/images/win/scripts/Installers/Validate-WSL.ps1
T

15 lines
345 B
PowerShell
Raw Normal View History

2020-07-09 11:57:02 +05:00
################################################################################
## File: Validate-WSL.ps1
## Desc: Validate WSL CLI existst
################################################################################
if (Get-Command -Name 'wsl')
{
Write-Host 'wsl is on path'
}
else
{
Write-Host 'wsl not on path'
exit 1
}