From db1dea9beaa2f52f8dcc18a7eaf9bf7a5bd906f7 Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Tue, 18 Aug 2020 08:39:13 +0300 Subject: [PATCH] wsl fix --- src/steps/os/windows.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/steps/os/windows.rs b/src/steps/os/windows.rs index 6e401400..e4e07189 100644 --- a/src/steps/os/windows.rs +++ b/src/steps/os/windows.rs @@ -50,7 +50,7 @@ pub fn run_scoop(cleanup: bool, run_type: RunType) -> Result<()> { pub fn run_wsl_topgrade(run_type: RunType) -> Result<()> { let wsl = require("wsl")?; let topgrade = Command::new(&wsl) - .args(&["bash", "-l", "which", "topgrade"]) + .args(&["which", "topgrade"]) .check_output() .map_err(|_| SkipStep)?;