Commit 089a1278 authored by xoviat's avatar xoviat Committed by GitHub
Browse files

FIX: attempt to ignore rm error

parent 6f1885d8
......@@ -8,7 +8,7 @@ set -e -x
function suppress {
# Suppress the output of a bash command unless it fails
rm --force $HOME/suppress.out 2> /dev/null
rm --force $HOME/suppress.out 2> /dev/null || true
$* 2>&1 > $HOME/suppress.out || cat $HOME/suppress.out
rm $HOME/suppress.out
}
......
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