Fix typo - use remove1() not remove()

This commit is contained in:
kamkow1
2025-06-20 00:36:08 +02:00
parent 53b097bf92
commit 540b3a1567

View File

@ -100,9 +100,9 @@ int main(int argc, char ** argv)
} else if (strcmp(cmd, "clean") == 0) {
remove1("./build");
remove1("./aboba");
remove("./mongoose.o");
remove("./gpp1");
remove("./watcher");
remove1("./mongoose.o");
remove1("./gpp1");
remove1("./watcher");
} else if (strcmp(cmd, "make-watcher") == 0) {
CMD("cc", "-o", "watcher", "watcher.c");
} else if (strcmp(cmd, "watch") == 0) {