Skip to content

Commit 9ffe120

Browse files
committed
cython (nest requirement) for mac
1 parent 0c34b3e commit 9ffe120

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

util/installation/common/util.sh

+5-1
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,11 @@ function CallOSSpecificScript {
346346
local BDM_INSTALL_OS_SRC=""
347347

348348
if echo "$SPECIFIC_OSES_SUPPORTED" | grep -Eiq "$SPECIFIC_BDM_OS" ; then
349-
BDM_INSTALL_OS_SRC=$BDM_INSTALL_SRC/$BDM_OS/$SPECIFIC_BDM_OS
349+
if [ "$BDM_OS" == "osx" ]; then
350+
BDM_INSTALL_OS_SRC=$BDM_INSTALL_SRC/$BDM_OS/common
351+
else
352+
BDM_INSTALL_OS_SRC=$BDM_INSTALL_SRC/$BDM_OS/$SPECIFIC_BDM_OS
353+
fi
350354
elif [ "$BDM_OS" == "osx" ] || [ "$BDM_OS" == "rhel" ] || [ "$BDM_OS" == "debian" ] || [ "$BDM_OS" == "suse" ]; then
351355
BDM_INSTALL_OS_SRC=$BDM_INSTALL_SRC/$BDM_OS/common
352356
else

0 commit comments

Comments
 (0)