From 548f3c573050308b9cdd7e3746cf783c054d5a00 Mon Sep 17 00:00:00 2001 From: Orsiris de Jong Date: Sat, 21 Sep 2024 20:39:26 +0200 Subject: [PATCH] Fix Spinner must work without env vars --- dev/ofunctions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/ofunctions.sh b/dev/ofunctions.sh index 0f23488ec..dfc136e9c 100755 --- a/dev/ofunctions.sh +++ b/dev/ofunctions.sh @@ -786,7 +786,7 @@ function _PerfProfiler { #__WITH_PARANOIA_DEBUG _OFUNCTIONS_SPINNER="|/-\\" function Spinner { - if [ $_LOGGER_SILENT == true ] || [ "$_LOGGER_ERR_ONLY" == true ] || [ "$_SYNC_ON_CHANGES" == "initiator" ] || [ "$_SYNC_ON_CHANGES" == "target" ] ; then + if [ "$_LOGGER_SILENT" == true ] || [ "$_LOGGER_ERR_ONLY" == true ] || [ "$_SYNC_ON_CHANGES" == "initiator" ] || [ "$_SYNC_ON_CHANGES" == "target" ] ; then return 0 else printf " [%c] \b\b\b\b\b\b" "$_OFUNCTIONS_SPINNER"