From c8b716540c160db25551e9c92416b41f31bf9b92 Mon Sep 17 00:00:00 2001 From: Shivam Mathur Date: Wed, 18 Aug 2021 05:48:04 +0530 Subject: [PATCH] Stop doing shallow clones on macOS self-hosted --- src/scripts/darwin.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/scripts/darwin.sh b/src/scripts/darwin.sh index f07ac3a8..e34a59ef 100644 --- a/src/scripts/darwin.sh +++ b/src/scripts/darwin.sh @@ -49,11 +49,11 @@ add_brew_tap() { tap=$1 if ! [ -d "$tap_dir/$tap" ]; then if [ "${runner:?}" = "self-hosted" ]; then - brew tap --shallow "$tap" >/dev/null 2>&1 + brew tap "$tap" >/dev/null 2>&1 else fetch_brew_tap "$tap" >/dev/null 2>&1 if ! [ -d "$tap_dir/$tap" ]; then - brew tap --shallow "$tap" >/dev/null 2>&1 + brew tap "$tap" >/dev/null 2>&1 fi fi fi