From b93056ea9e90c9291d223de7855e57b064051516 Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Sun, 4 Aug 2024 15:37:58 -0500 Subject: [PATCH] Update util.sh --- util.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.sh b/util.sh index 7b816c9..3fee86a 100755 --- a/util.sh +++ b/util.sh @@ -405,5 +405,5 @@ diagnostics() { main_menu } -command_exists() { command -v "$@" > /dev/null 2>&1 } +command_exists() { command -v "$@" > /dev/null 2>&1; } # join_by() { local IFS="$1"; shift; echo "$*"; }