We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ffe120 commit 0ac11e5Copy full SHA for 0ac11e5
util/installation/common/util.sh
@@ -99,7 +99,11 @@ function CheckOsSupported {
99
local SPECIFIC_BDM_OS=$(DetectOs)
100
101
if echo "$SPECIFIC_OSES_SUPPORTED" | grep -Eiq "$SPECIFIC_BDM_OS" ; then
102
- BDM_INSTALL_OS_SRC=$BDM_INSTALL_SRC/$BDM_OS/$SPECIFIC_BDM_OS
+ if [ "$BDM_OS" == "osx" ]; then
103
+ BDM_INSTALL_OS_SRC=$BDM_INSTALL_SRC/$BDM_OS/common
104
+ else
105
+ BDM_INSTALL_OS_SRC=$BDM_INSTALL_SRC/$BDM_OS/$SPECIFIC_BDM_OS
106
+ fi
107
elif [ "$BDM_OS" == "osx" ] || [ "$BDM_OS" == "rhel" ] || [ "$BDM_OS" == "debian" ] || [ "$BDM_OS" == "suse" ] ; then
108
BDM_INSTALL_OS_SRC=$BDM_INSTALL_SRC/$BDM_OS/common
109
else
0 commit comments