mirror of
https://github.com/shivammathur/setup-php.git
synced 2024-11-22 20:01:06 +07:00
Add patch to update brew core repo
This commit is contained in:
parent
4ce6f3c3df
commit
dab978c436
@ -140,6 +140,13 @@ update_dependencies_helper() {
|
|||||||
update_dependencies() {
|
update_dependencies() {
|
||||||
if ! [ -e /tmp/update_dependencies ] && [ "${runner:?}" != "self-hosted" ] && [ "${ImageOS:-}" != "" ] && [ "${ImageVersion:-}" != "" ]; then
|
if ! [ -e /tmp/update_dependencies ] && [ "${runner:?}" != "self-hosted" ] && [ "${ImageOS:-}" != "" ] && [ "${ImageVersion:-}" != "" ]; then
|
||||||
patch_brew
|
patch_brew
|
||||||
|
|
||||||
|
# Remove this patch when brew is updated on the images.
|
||||||
|
(
|
||||||
|
cd "$tap_dir/homebrew/homebrew-core" || true
|
||||||
|
git add . && git stash && git pull origin master
|
||||||
|
) >/dev/null 2>&1 && return
|
||||||
|
|
||||||
while read -r dependency; do
|
while read -r dependency; do
|
||||||
update_dependencies_helper "$dependency" &
|
update_dependencies_helper "$dependency" &
|
||||||
to_wait+=($!)
|
to_wait+=($!)
|
||||||
|
Loading…
Reference in New Issue
Block a user