This commit is contained in:
Roey Darwish Dror
2020-08-18 08:39:13 +03:00
parent cd94d98fb9
commit db1dea9bea

View File

@@ -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)?;