Commit 20e1829d authored by Diego Biurrun's avatar 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.
parent 12ad0677
......@@ -70,7 +70,7 @@ fate()(
)
clean(){
rm -r ${build} ${inst}
rm -rf ${build} ${inst}
}
report(){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment