From ab5b56a82432978ca2455088a7d585942788deea Mon Sep 17 00:00:00 2001 From: sxyazi Date: Sat, 4 May 2024 22:16:54 +0800 Subject: [PATCH] .. --- yazi-boot/src/boot.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yazi-boot/src/boot.rs b/yazi-boot/src/boot.rs index 055defe0..f2cab5ad 100644 --- a/yazi-boot/src/boot.rs +++ b/yazi-boot/src/boot.rs @@ -56,7 +56,7 @@ impl Boot { writeln!(s, " Debug: {}", cfg!(debug_assertions))?; writeln!(s, "\nYa")?; - writeln!(s, " Version: {:?}", Command::new("ya").args(["--version"]).output())?; + writeln!(s, " Version: {:?}", Command::new("ya").arg("--version").output())?; writeln!(s, "\nEmulator")?; writeln!(s, " Emulator.via_env: {:?}", yazi_adaptor::Emulator::via_env())?;