Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
makefile: ignore errors during clean
The file(s) being removed may not exist, but make shouldn't fail because of it: $ make clean rm ./firmware/*.uf2 rm: cannot remove './firmware/*.uf2': No such file or directory make: *** [Makefile:10: clean] Error 1 $ echo $? 2 -f silences any output from rm even though the single dash tells make to ignore the failure, which just creates noise.
- Loading branch information