From f91a1ccc7835fd67ba25740bd2785c875cb95c19 Mon Sep 17 00:00:00 2001 From: Luiz Angelo Daros de Luca Date: Thu, 20 May 2021 17:31:45 -0300 Subject: [PATCH] Use rm -rf to remove fixtures rm interactively asks for confirmation while removing read-only files and fixtures sys has dozens of them. Signed-off-by: Luiz Angelo Daros de Luca --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d991d35c..d9be07e9 100644 --- a/Makefile +++ b/Makefile @@ -102,7 +102,7 @@ skip-test-32bit: %/.unpacked: %.ttar @echo ">> extracting fixtures" - if [ -d $(dir $@) ] ; then rm -r $(dir $@) ; fi + if [ -d $(dir $@) ] ; then rm -rf $(dir $@) ; fi ./ttar -C $(dir $*) -x -f $*.ttar touch $@