Browse Source

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.
tags/n0.9
Diego Biurrun 13 years ago
parent
commit
20e1829dad
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tests/fate.sh

+ 1
- 1
tests/fate.sh View File

@@ -70,7 +70,7 @@ fate()(
)

clean(){
rm -r ${build} ${inst}
rm -rf ${build} ${inst}
}

report(){


Loading…
Cancel
Save