job: remove debug print

This commit is contained in:
Antoine Martin 2021-03-29 17:45:25 +02:00
parent 3390af3818
commit ae3ab8c893

View file

@ -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);