Skip to content

Commit c99db6b

Browse files
Correct condition of commit removal
1 parent 4deea82 commit c99db6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/src/github.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@ pub async fn post_finished(data: &InputData) {
599599
for aid in conn.in_progress_artifacts().await {
600600
match aid {
601601
ArtifactId::Commit(c) => {
602-
commits.insert(c.sha);
602+
commits.remove(&c.sha);
603603
}
604604
ArtifactId::Artifact(_) => {
605605
// do nothing, for now, though eventually we'll want an artifact

0 commit comments

Comments
 (0)