From ae3ab8c8937ed70cb6bdaa43a7be73fb33536ae3 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Mon, 29 Mar 2021 17:45:25 +0200 Subject: [PATCH] job: remove debug print --- src/job.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/job.rs b/src/job.rs index f6e80f6..25697b5 100644 --- a/src/job.rs +++ b/src/job.rs @@ -150,7 +150,6 @@ impl Job { pub(crate) fn run(&mut self, homedir: &Path) -> anyhow::Result<()> { let local_path = homedir.join(&self.repo.full_name); - println!("{}", local_path.display()); assert!(local_path.is_absolute()); self.local_path = Some(local_path);