From 20e1829dad73b5093d95fc7d45776d40b2705635 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Tue, 20 Sep 2011 17:09:45 +0200 Subject: fate.sh: Ignore errors from rm command during cleanup. The install directory being deleted might not be present if the build failed. This can lead to annoying error output if the FATE client is run as a cronjob. --- tests/fate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/fate.sh') diff --git a/tests/fate.sh b/tests/fate.sh index 617a726d95..e04c8710d7 100755 --- a/tests/fate.sh +++ b/tests/fate.sh @@ -70,7 +70,7 @@ fate()( ) clean(){ - rm -r ${build} ${inst} + rm -rf ${build} ${inst} } report(){ -- cgit v1.2.3