mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-08-23 22:16:48 +00:00
fix(go-essentials): correctly silence 'command -v'
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user