Update dependencies

This commit is contained in:
2023-11-06 20:13:14 +01:00
parent 29b3bd3581
commit 8c418ff846
5 changed files with 203 additions and 328 deletions

View File

@@ -179,7 +179,7 @@ fn sync_repo(root_path: &Path, repo: &repo::Repo, init_worktree: bool) -> Result
"Repo already exists, but is not using a worktree setup",
));
};
} else if matches!(&repo.remotes, None) || repo.remotes.as_ref().unwrap().is_empty() {
} else if repo.remotes.is_none() || repo.remotes.as_ref().unwrap().is_empty() {
print_repo_action(
&repo.name,
"Repository does not have remotes configured, initializing new",