From 707526a02b68c7902c1a04351024d3e7593ccd5d Mon Sep 17 00:00:00 2001 From: Michael Tautschnig Date: Wed, 31 Jan 2024 19:27:08 +0000 Subject: [PATCH] Actually ignore errors --- scripts/setup/macos/install_viewer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/setup/macos/install_viewer.sh b/scripts/setup/macos/install_viewer.sh index b722ab4cc22c..b55eca370d82 100755 --- a/scripts/setup/macos/install_viewer.sh +++ b/scripts/setup/macos/install_viewer.sh @@ -20,6 +20,6 @@ set -x # Build from source, since there's only a macos-12 bottle which doesn't seem to work. # Install Python 3.12 first while ignoring errors: the system may provide this # version, which will hinder brew from installing symlinks -brew install python@3.12 +brew install python@3.12 || true brew install -s aws/tap/cbmc-viewer echo "Installed: $(cbmc-viewer --version)"