From 4842cb123743242057dc5ce7534a82091b2286e6 Mon Sep 17 00:00:00 2001 From: Daniel Marbach Date: Fri, 7 Aug 2026 08:21:13 +0200 Subject: [PATCH] Remove web-download option from WSL install command --- setup.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.ps1 b/setup.ps1 index 2ef3da4..465195c 100644 --- a/setup.ps1 +++ b/setup.ps1 @@ -285,7 +285,7 @@ elseif ($runnerOs -eq "Windows") { if ($installedDistributions -notcontains $wslDistribution) { Write-Output "Installing $wslDistribution in WSL" - wsl.exe --install $wslDistribution --web-download --no-launch + wsl.exe --install $wslDistribution --no-launch if ($LASTEXITCODE -ne 0) { throw "Failed to install $wslDistribution in WSL" }