fix(go-essentials): correctly silence 'command -v'

This commit is contained in:
AJ ONeal
2024-01-15 21:48:53 -07:00
parent d306f7fc56
commit 141b56b694
+1 -1
View File
@@ -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