Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Makefile: don't fail find -delete if we run in parallel.
Use xargs rm -f which doesn't care if it's already deleted. ``` find contrib/pyln-grpc-proto/pyln/ -type f -name "*.py.bak" -delete find contrib/pyln-grpc-proto/pyln/ -type f -name "*.py.bak" -delete find: cannot delete ‘contrib/pyln-grpc-proto/pyln/grpc/node_pb2_grpc.py.bak’: No such file or directory make: *** [Makefile:390: contrib/pyln-grpc-proto/pyln/grpc/node_pb2.py] Error 1 make: *** Waiting for unfinished jobs.... ``` Signed-off-by: Rusty Russell <[email protected]>
- Loading branch information