[FFmpeg-cvslog] fate.sh: Ignore errors from rm command during cleanup.
Diego Biurrun
git at videolan.org
Fri Sep 23 00:37:49 CEST 2011
ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Tue Sep 20 17:09:45 2011 +0200| [20e1829dad73b5093d95fc7d45776d40b2705635] | committer: Diego Biurrun
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.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=20e1829dad73b5093d95fc7d45776d40b2705635
---
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(){
More information about the ffmpeg-cvslog
mailing list