From 46af98f752f46f263eee4e4c42a62153f3998078 Mon Sep 17 00:00:00 2001 From: sxyazi Date: Sat, 11 Jan 2025 12:06:18 +0800 Subject: [PATCH] Reword install message --- yazi-cli/src/package/install.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yazi-cli/src/package/install.rs b/yazi-cli/src/package/install.rs index e5cc18fb..c1860c95 100644 --- a/yazi-cli/src/package/install.rs +++ b/yazi-cli/src/package/install.rs @@ -5,7 +5,7 @@ use super::{Dependency, Git}; impl Dependency { pub(super) async fn install(&mut self) -> Result<()> { - self.header("Installing package `{name}`")?; + self.header("Fetching package `{name}`")?; let path = self.local(); if !must_exists(&path).await {