Skip to content

Commit 377469f

Browse files
committed
add osx to offically supported distros-2
1 parent 862b65b commit 377469f

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
@@ -146,7 +146,11 @@ function CompileListOfPackages {
146146
local BDM_INSTALL_OS_SRC=""
147147

148148
if echo "$SPECIFIC_OSES_SUPPORTED" | grep -Eiq "$SPECIFIC_BDM_OS" ; then
149-
BDM_INSTALL_OS_SRC=$BDM_INSTALL_SRC/$BDM_OS/$SPECIFIC_BDM_OS
149+
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
150154
elif [ "$BDM_OS" == "osx" ] || [ "$BDM_OS" == "rhel" ] || [ "$BDM_OS" == "debian" ] || [ "$BDM_OS" == "suse" ]; then
151155
BDM_INSTALL_OS_SRC=$BDM_INSTALL_SRC/$BDM_OS/common
152156
else

0 commit comments

Comments
 (0)