aboutsummaryrefslogtreecommitdiff
path: root/make.c
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-01-19 11:39:06 +0100
committerThomas Voss <mail@thomasvoss.com> 2024-01-19 11:39:06 +0100
commit758cce6b799e4734dfd45694a577eac0c27fffa1 (patch)
tree291e74fb5a20a97b888c2b1983dbbc269de4b1f4 /make.c
parent38b5c2ca4db3757883d7a7736603d9727b0fb5fd (diff)
Add git-grab to the list of files to clean
Diffstat (limited to 'make.c')
-rw-r--r--make.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/make.c b/make.c
index 6e42d6b..ed6f8a3 100644
--- a/make.c
+++ b/make.c
@@ -66,7 +66,7 @@ main(int argc, char **argv)
if (argc > 0) {
if (streq(*argv, "clean")) {
- cmdadd(&c, "rm", "-f", "grab");
+ cmdadd(&c, "rm", "-f", "grab", "git-grab");
cmdprc(c);
} else if (streq(*argv, "install")) {
char *bin, *man;