Refactor the wsl installation check

This commit is contained in:
Manuel Thalmann 2024-08-08 22:21:49 +02:00
parent a91bb53a07
commit 0246aec7a0

View file

@ -73,7 +73,7 @@ $null = New-Module {
continue;
}
if (-not (& { wsl --status; $?; })) {
if (-not (& { $null = wsl --status; $?; })) {
wsl --install --no-launch;
Restart-Intermediate;
return;