From a2c31f8886fba015aab73a4886c97401795d8f03 Mon Sep 17 00:00:00 2001 From: Andrew Cantino Date: Sun, 24 Dec 2023 14:55:12 -0800 Subject: [PATCH] Remove spurious print --- src/path_update_helpers.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/path_update_helpers.rs b/src/path_update_helpers.rs index 887b1440..a57436ec 100644 --- a/src/path_update_helpers.rs +++ b/src/path_update_helpers.rs @@ -5,7 +5,6 @@ use unicode_segmentation::UnicodeSegmentation; pub fn normalize_path(incoming_path: &str) -> String { let expanded_path = shellexpand::tilde(incoming_path).to_string(); - println!("{}", expanded_path); return Path::new(&expanded_path) .absolutize_from(pwd()) .unwrap()