From 9fe7d7ad8786a97fa7c65aa0f1b342223ca50bd6 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Fri, 12 Dec 2025 21:37:48 -0500 Subject: [PATCH] Lol follow shellcheck suggestions too closely. The ui should work again. --- barnard-ui | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/barnard-ui b/barnard-ui index 1dc604f..a2e9583 100755 --- a/barnard-ui +++ b/barnard-ui @@ -143,7 +143,8 @@ connect() { if [[ -f "$certFile" ]]; then certArgs=(-certificate "$certFile") fi - command barnard -username "$username" -server "${mumbleServerList[$serverName]}" "${certArgs[@]}" --fifo ~/.config/barnard/cmd --buffers 16 |& log + # shellcheck disable=SC2086 + command barnard -username "$username" -server ${mumbleServerList[$serverName]} "${certArgs[@]}" --fifo ~/.config/barnard/cmd --buffers 16 |& log } remove-server() {