From 7f4ffa6a53c47b8ae6bac444151ef60512d94565 Mon Sep 17 00:00:00 2001 From: Daniel Marbach Date: Fri, 7 Aug 2026 08:26:09 +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 918f4c2..c98fec2 100644 --- a/setup.ps1 +++ b/setup.ps1 @@ -56,7 +56,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" }