From d5986b32d21e9010a9cbce0864ed3951f4b624cd Mon Sep 17 00:00:00 2001 From: Jens Troeger Date: Mon, 27 Jul 2026 11:22:03 -0700 Subject: [PATCH] chore: remove unnecessary cmd line flag from `rm` in a Makefile recipe --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bc7a833f..17470ec1 100644 --- a/Makefile +++ b/Makefile @@ -264,7 +264,7 @@ clean: dist-clean # Remove code caches, or the entire virtual environment. .PHONY: nuke-git-hooks nuke-caches nuke nuke-git-hooks: - find .git/hooks/ -type f ! -name '*.sample' -exec rm -fr {} + + find .git/hooks/ -type f ! -name '*.sample' -exec rm -f {} + nuke-caches: find src/ -type d -name __pycache__ -exec rm -fr {} + find tests/ -type d -name __pycache__ -exec rm -fr {} +