Module: libav Branch: master Commit: 20e1829dad73b5093d95fc7d45776d40b2705635
Author: Diego Biurrun <[email protected]> Committer: Diego Biurrun <[email protected]> Date: Tue Sep 20 17:09:45 2011 +0200 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 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tests/fate.sh b/tests/fate.sh index 617a726..e04c871 100755 --- a/tests/fate.sh +++ b/tests/fate.sh @@ -70,7 +70,7 @@ fate()( ) clean(){ - rm -r ${build} ${inst} + rm -rf ${build} ${inst} } report(){ _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
