From eb69fdc114ebcd9ef210c3bce36b504c9471e91f Mon Sep 17 00:00:00 2001 From: olli Date: Tue, 28 Nov 2023 16:43:40 +0100 Subject: [PATCH] fix empty vars --- dabo/analyze.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dabo/analyze.sh b/dabo/analyze.sh index 6bd66bf..885d878 100755 --- a/dabo/analyze.sh +++ b/dabo/analyze.sh @@ -108,14 +108,14 @@ function analyze { then check_sell_conditions ${g_tmp}/${tmpfile} >>${g_tmp}/output-${tmpfile} else - check_sell_conditions ${g_tmp}/${tmpfile} + check_sell_conditions ${g_tmp}/${tmpfile} | tee -a ${g_tmp}/output-${tmpfile} fi else if [ "${ANALYZE_VERBOSE}" -eq "0" ] then check_buy_conditions ${g_tmp}/${tmpfile} >>${g_tmp}/output-${tmpfile} else - check_buy_conditions ${g_tmp}/${tmpfile} + check_buy_conditions ${g_tmp}/${tmpfile} | tee -a ${g_tmp}/output-${tmpfile} fi fi ## Chart Part