tldr-pages / tldr-c-client

C command-line client for tldr pages
MIT License
293 stars 50 forks source link

Makefile: add uninstall target #104

Closed iacore closed 11 months ago

4G3NT commented 11 months ago

rm -f should be used to prevent rm from throwing an error if the file is non-existent. It's usually used by make targets, especially uninstall targets.

iacore commented 11 months ago

it's fixed