This commit is contained in:
Cyborus 2024-04-17 21:24:45 -04:00
parent 6c08c8a25c
commit 2587bf9482
No known key found for this signature in database

View file

@ -348,7 +348,10 @@ impl RepoCommand {
println!("{}", repo.full_name.ok_or_eyre("no full name")?);
if let Some(parent) = &repo.parent {
println!("Fork of {}", parent.full_name.as_ref().ok_or_eyre("no full name")?);
println!(
"Fork of {}",
parent.full_name.as_ref().ok_or_eyre("no full name")?
);
}
if repo.mirror == Some(true) {
if let Some(original) = &repo.original_url {