From 2712d04a9865051e247a0c541ab7a9c1cf9d8920 Mon Sep 17 00:00:00 2001 From: Philippe Llerena Date: Fri, 2 May 2025 14:36:43 +0200 Subject: [PATCH] refactor(run): update comment to clarify vendor autoload condition --- src/run.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/run.rs b/src/run.rs index a81f808e94..31e40abe1e 100644 --- a/src/run.rs +++ b/src/run.rs @@ -76,7 +76,7 @@ pub(crate) fn run_commands( } perf!("read login.nu", start_time, use_color); - // Only run vendor autoload if NU_AUTOLOAD_ON_COMMAND is set to true + // Only run vendor autoload if NU_AUTOLOAD_ON_COMMAND is set if nu_autoload_on_command(engine_state, &stack) { read_vendor_autoload_files(engine_state, &mut stack);