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>
This commit is contained in:
parent
f29590e0a8
commit
f91a1ccc78
2
Makefile
2
Makefile
|
@ -102,7 +102,7 @@ skip-test-32bit:
|
||||||
|
|
||||||
%/.unpacked: %.ttar
|
%/.unpacked: %.ttar
|
||||||
@echo ">> extracting fixtures"
|
@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
|
./ttar -C $(dir $*) -x -f $*.ttar
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue