This commit is contained in:
Armaël Guéneau 2024-04-10 18:48:03 +02:00
parent ec1b70d399
commit fc916670c5

View file

@ -256,11 +256,7 @@ async fn main() -> eyre::Result<()> {
let repos = to_watch(&client).await?;
println!("Watching {} repos", repos.len());
for r in repos.iter() {
println!("- {}", r);
}
let mut state = read_state(&client).await?;
println!("Current state: {:?}", &state);
for repo in repos {
match check_repo(&client, &mut state, &repo).await {