Add some comments

This commit is contained in:
southerntofu 2020-07-01 17:38:27 +02:00
parent 603f040b97
commit 896a3e6f5c
1 changed files with 2 additions and 1 deletions

View File

@ -37,11 +37,12 @@ fn main() -> Result<(), std::io::Error> {
// Skip further processing
continue
}
// New repo just cloned
}
// Otherwise, it's a sourceless task
continue
}
// So the cloned repo is here maybe update?
// So the cloned repo is already here maybe update?
}
Ok(())
}