mirror of
https://codeberg.org/Cyborus/forgejo-cli.git
synced 2024-11-10 12:09:33 +01:00
format
This commit is contained in:
parent
6c08c8a25c
commit
2587bf9482
1 changed files with 4 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue