add a missing STATUS_EXISTS notification in update_blob()
diff --git a/lib/worktree.c b/lib/worktree.c
index da4a3d7..d3e4837 100644
--- a/lib/worktree.c
+++ b/lib/worktree.c
@@ -1946,6 +1946,10 @@ update_blob(struct got_worktree *worktree,
SHA1_DIGEST_LENGTH) == 0) {
err = sync_timestamps(worktree->root_fd,
path, status, ie, &sb);
+ if (err)
+ goto done;
+ err = (*progress_cb)(progress_arg, GOT_STATUS_EXISTS,
+ path);
goto done;
}
}