From 9d1d2db99b8c5b00c60398346b273c4acc285024 Mon Sep 17 00:00:00 2001 From: Miles Johnson Date: Sun, 1 Oct 2023 22:40:52 -0700 Subject: [PATCH] fix: Show file for outdated. --- CHANGELOG.md | 1 + crates/cli/src/commands/outdated.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 021133e0b..a61d0f14f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ #### 🚀 Updates +- The file loaded for `proto outdated` is now output in the terminal. - WASM API - Added `get_env_var` and `set_env_var` host functions. - Added `host_env!` macro. diff --git a/crates/cli/src/commands/outdated.rs b/crates/cli/src/commands/outdated.rs index 3e3ff7d53..bb7cd1018 100644 --- a/crates/cli/src/commands/outdated.rs +++ b/crates/cli/src/commands/outdated.rs @@ -44,6 +44,7 @@ pub async fn outdated(args: ArgsRef) { if !args.json { info!("Checking for newer versions..."); + info!("Loading {}", color::path(&tools_config.path)); } let mut items = HashMap::new();