From 292a7745fdd634b9db87304585a2b9d6d73d0741 Mon Sep 17 00:00:00 2001 From: Daniel Roberts ddanielr Date: Fri, 13 Dec 2024 19:34:37 +0000 Subject: [PATCH] fix SC2086 --- bin/impl/util.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/impl/util.sh b/bin/impl/util.sh index b0c3719..27d4a09 100755 --- a/bin/impl/util.sh +++ b/bin/impl/util.sh @@ -125,7 +125,7 @@ function print_to_console { if [[ -z $UNO_CONSOLE_FD ]]; then echo "$@" else - echo "$@" >&${UNO_CONSOLE_FD} + echo "$@" >&$UNO_CONSOLE_FD fi }