macOS version 14 removed the /usr/local/var/ directory. /run/ and /var/run/ are defined by the Filesystem Hierarchy Standard for the purpose of UNIX-domain sockets ^1. However, macOS 14 does not include /run/, and /var/run/ is not world-writable on that platform. In order to support macOS 14, use the /tmp/ directory, instead. Extend the configuration of the project's continuous integration environment to include macOS 14.
macOS version 14 removed the
/usr/local/var/
directory./run/
and/var/run/
are defined by the Filesystem Hierarchy Standard for the purpose of UNIX-domain sockets ^1. However, macOS 14 does not include/run/
, and/var/run/
is not world-writable on that platform. In order to support macOS 14, use the/tmp/
directory, instead. Extend the configuration of the project's continuous integration environment to include macOS 14.