Skip to content

Commit 3dd69fe

Browse files
fix(ui): suppress stdout on macOS brew install build deps (#2479)
1 parent ac18962 commit 3dd69fe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

nodebuilder

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -887,7 +887,7 @@ install_build_dependencies_darwin()
887887
dependencies=$(torsocks curl --fail --silent --show-error --location --retry 2 "${BUILD_DEPENDENCIES_URL}") ||
888888
dependencies=$(curl --fail --silent --show-error --location --retry 5 "${BUILD_DEPENDENCIES_URL}")
889889
[ -z "${dependencies:-}" ] && throw_error "The list of dependencies is empty."
890-
printf '%s\n' "${dependencies}" | tr -d '\r' | xargs brew install --quiet > /dev/null
890+
printf '%s\n' "${dependencies}" | tr -d '\r' | xargs brew install --quiet > /dev/null 2>&1
891891
}
892892

893893
install_build_dependencies_dnf()

0 commit comments

Comments
 (0)