We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 862b65b commit 377469fCopy full SHA for 377469f
util/installation/common/util.sh
@@ -146,7 +146,11 @@ function CompileListOfPackages {
146
local BDM_INSTALL_OS_SRC=""
147
148
if echo "$SPECIFIC_OSES_SUPPORTED" | grep -Eiq "$SPECIFIC_BDM_OS" ; then
149
- BDM_INSTALL_OS_SRC=$BDM_INSTALL_SRC/$BDM_OS/$SPECIFIC_BDM_OS
+ if [ "$BDM_OS" == "osx" ]; then
150
+ BDM_INSTALL_OS_SRC=$BDM_INSTALL_SRC/$BDM_OS/common
151
+ else
152
+ BDM_INSTALL_OS_SRC=$BDM_INSTALL_SRC/$BDM_OS/$SPECIFIC_BDM_OS
153
+ fi
154
elif [ "$BDM_OS" == "osx" ] || [ "$BDM_OS" == "rhel" ] || [ "$BDM_OS" == "debian" ] || [ "$BDM_OS" == "suse" ]; then
155
BDM_INSTALL_OS_SRC=$BDM_INSTALL_SRC/$BDM_OS/common
156
else
0 commit comments