| 169 | } |
| 170 | |
| 171 | static void prune_worktree(const char *id, const char *reason) |
| 172 | { |
| 173 | if (show_only || verbose) |
| 174 | fprintf_ln(stderr, _("Removing %s/%s: %s"), "worktrees", id, reason); |
| 175 | if (!show_only) |
| 176 | delete_git_dir(id); |
| 177 | } |
| 178 | |
| 179 | static int prune_cmp(const void *a, const void *b) |
| 180 | { |
no test coverage detected