From c25e262b04c15d4de7107cc131de467882e7dcec Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Thu, 28 Mar 2019 16:05:41 -0400 Subject: Merge the --recompile and --reload flags (#2003) --- cli/modules.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'cli/modules.rs') diff --git a/cli/modules.rs b/cli/modules.rs index 908c31b6d..6de76b8fe 100644 --- a/cli/modules.rs +++ b/cli/modules.rs @@ -88,7 +88,8 @@ impl Modules { } pub fn print_file_info(&self, deno_dir: &DenoDir, filename: String) { - let maybe_out = deno_dir.fetch_module_meta_data(&filename, "."); + // TODO Note the --reload flag is ignored here. + let maybe_out = deno_dir.fetch_module_meta_data(&filename, ".", true); if maybe_out.is_err() { println!("{}", maybe_out.unwrap_err()); return; -- cgit v1.2.3