Stop doing shallow clones on macOS self-hosted

This commit is contained in:
Shivam Mathur 2021-08-23 12:49:33 +05:30
parent c9aea8708f
commit 113a31fceb
No known key found for this signature in database
GPG Key ID: 3E13E4C8591ACC2A

View File

@ -95,7 +95,7 @@ add_brew_tap() {
if ! [ -d "$tap_dir/$tap" ]; then
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
}