Skip to content

Commit e7c359b

Browse files
committed
macpython: brew install doxygen only when not installed
Addresses: + brew install doxygen Error: doxygen 1.8.13_1 is already installed To upgrade to 1.8.14, run `brew upgrade doxygen`
1 parent c79fe21 commit e7c359b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/macpython-build-wheels.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ source "${script_dir}/macpython-build-common.sh"
2020
# -----------------------------------------------------------------------
2121
# Ensure that requirements are met
2222
brew update
23-
brew install doxygen
23+
brew info doxygen | grep --quiet 'Not installed' && brew install doxygen
2424
# -----------------------------------------------------------------------
2525
# Remove previous virtualenv's
2626
rm -rf ${SCRIPT_DIR}/../venvs

0 commit comments

Comments
 (0)