diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-05-25 13:22:01 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-05-25 13:22:01 +0000 |
commit | f1f836fd3bcf17e4c4512383e396bcd9f85a9011 (patch) | |
tree | ed50d815171e17d3b545e58436726c49f6aa85e6 /tests/seek_test.sh | |
parent | 5e2dfd39064b3a0fa078beb4937077f2759e3d43 (diff) | |
download | ffmpeg-f1f836fd3bcf17e4c4512383e396bcd9f85a9011.tar.gz |
Do not fail or print an error if the logfile already exists.
Originally committed as revision 9127 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tests/seek_test.sh')
-rwxr-xr-x | tests/seek_test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/seek_test.sh b/tests/seek_test.sh index bbe2f36448..cf4636c814 100755 --- a/tests/seek_test.sh +++ b/tests/seek_test.sh @@ -7,7 +7,7 @@ logfile="$datadir/seek.regression" reffile="$1" list=`ls data/a-* data/b-* | sort` -rm $logfile +rm -f $logfile for i in $list ; do echo ---------------- >>$logfile echo $i >>$logfile |