Browse Source

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 <luizluca@gmail.com>
pull/2043/head
Luiz Angelo Daros de Luca 4 years ago
parent
commit
f91a1ccc78
  1. 2
      Makefile

2
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 $@

Loading…
Cancel
Save