From 141b56b69400d1dc50705b5207031e5a72e5da74 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Fri, 12 Jan 2024 20:24:01 +0000 Subject: [PATCH] fix(go-essentials): correctly silence 'command -v' --- go-essentials/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go-essentials/install.sh b/go-essentials/install.sh index 598bf4f..97f41ff 100644 --- a/go-essentials/install.sh +++ b/go-essentials/install.sh @@ -3,7 +3,7 @@ set -e set -u __run_go_essentials() { - if ! command -v go 2> /dev/null; then + if ! command -v go > /dev/null; then "$HOME/.local/bin/webi" "go@${WEBI_TAG}" fi