We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c34b3e commit 9ffe120Copy full SHA for 9ffe120
util/installation/common/util.sh
@@ -346,7 +346,11 @@ function CallOSSpecificScript {
346
local BDM_INSTALL_OS_SRC=""
347
348
if echo "$SPECIFIC_OSES_SUPPORTED" | grep -Eiq "$SPECIFIC_BDM_OS" ; then
349
- BDM_INSTALL_OS_SRC=$BDM_INSTALL_SRC/$BDM_OS/$SPECIFIC_BDM_OS
+ 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
354
elif [ "$BDM_OS" == "osx" ] || [ "$BDM_OS" == "rhel" ] || [ "$BDM_OS" == "debian" ] || [ "$BDM_OS" == "suse" ]; then
355
BDM_INSTALL_OS_SRC=$BDM_INSTALL_SRC/$BDM_OS/common
356
else
0 commit comments