Commit 13b7690f authored by xoviat's avatar xoviat Committed by GitHub
Browse files

FIX: use home directory

parent 450734a5
......@@ -6,9 +6,9 @@ source library_builders.sh
function suppress {
# Suppress the output of a bash command unless it fails
rm --force $TMPDIR/suppress.out 2> /dev/null
$* 2>&1 > $TMPDIR/suppress.out || cat $TMPDIR/suppress.out
rm $TMPDIR/suppress.out
rm --force $HOME/suppress.out 2> /dev/null
$* 2>&1 > $HOME/suppress.out || cat $HOME/suppress.out
rm $HOME/suppress.out
}
suppress build_openssl
......
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