From fc7eb9f5e0a079acaed17bdc5689c41707410459 Mon Sep 17 00:00:00 2001 From: olli Date: Mon, 27 Nov 2023 21:44:01 +0100 Subject: [PATCH] ema800 workaround --- dabo/functions/get_vars_from_csv.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dabo/functions/get_vars_from_csv.sh b/dabo/functions/get_vars_from_csv.sh index 8cad26e..1e2cb73 100644 --- a/dabo/functions/get_vars_from_csv.sh +++ b/dabo/functions/get_vars_from_csv.sh @@ -126,7 +126,11 @@ f_macd_histogram_signal=${f_macd_histogram_signal}" # Coingecko price get_var_from_line coingecko_price 40 - [ -n "${f_empty_var}" ] && return 1 + if [ -n "${f_empty_var}" ] + then + g_echo_note "got not all vars" + return 1 + fi }