Skip php-darwin cache on Intel macOS
This commit is contained in:
@@ -188,7 +188,8 @@ add_php() {
|
||||
php_keg="php@$version$suffix"
|
||||
php_formula="shivammathur/php/$php_keg"
|
||||
if [[ "$existing_version" = "false" || -n "$suffix" || "$action" = "upgrade" ]]; then
|
||||
if [ "${runner:?}" != "self-hosted" ] && [ "${use_package_cache:-true}" != "false" ] && setup_cached_versions; then
|
||||
if [ "${arch:?}" = "arm64" ] && [ "${runner:?}" != "self-hosted" ] && \
|
||||
[ "${use_package_cache:-true}" != "false" ] && setup_cached_versions; then
|
||||
return 0
|
||||
fi
|
||||
update_dependencies
|
||||
|
||||
Reference in New Issue
Block a user