Fix typo - use remove1() not remove()
This commit is contained in:
6
build.c
6
build.c
@ -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) {
|
||||
|
Reference in New Issue
Block a user