From 5e89660247409712f6cf589341565fa9f654f85f Mon Sep 17 00:00:00 2001 From: phlax Date: Thu, 4 Mar 2021 13:54:29 +0000 Subject: [PATCH] ci: Fix macosx install flake (#15310) Commit Message: ci: Fix macosx install flake Signed-off-by: Ryan Northey Signed-off-by: Shikugawa --- ci/mac_ci_setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/mac_ci_setup.sh b/ci/mac_ci_setup.sh index 8eec2a712e33b..5361c05c7322f 100755 --- a/ci/mac_ci_setup.sh +++ b/ci/mac_ci_setup.sh @@ -42,7 +42,7 @@ if ! retry brew update; then echo "Failed to update homebrew" fi -DEPS="automake cmake coreutils go libtool wget ninja" +DEPS="automake cmake coreutils libtool wget ninja" for DEP in ${DEPS} do is_installed "${DEP}" || install "${DEP}"