Merge latest develop into Confidential MPT

This commit is contained in:
Peter Chen
2026-06-05 22:02:44 -07:00
parent 72ff8f9824
commit 617c56c9f9
1081 changed files with 30289 additions and 18367 deletions

View File

@@ -6,7 +6,7 @@ set -e
# On MacOS, ensure that GNU sed is installed and available as `gsed`.
SED_COMMAND=sed
if [[ "${OSTYPE}" == 'darwin'* ]]; then
if ! command -v gsed &> /dev/null; then
if ! command -v gsed &>/dev/null; then
echo "Error: gsed is not installed. Please install it using 'brew install gnu-sed'."
exit 1
fi