Commit 98c0713a authored by mattip's avatar mattip
Browse files

fix fix fix

parent f012755f
...@@ -205,10 +205,12 @@ function untar { ...@@ -205,10 +205,12 @@ function untar {
} }
function install_rsync { function install_rsync {
if [ -z "$IS_MACOS" ]; then if [ -n "$IS_MACOS" ]; then
[[ $(type -P rsync) ]] || yum_install rsync # macOS
elif [[ $MB_ML_VER == "_2_24" ]]; then elif [[ $MB_ML_VER == "_2_24" ]]; then
[[ $(type -P rsync) ]] || apt-get install -y rsync [[ $(type -P rsync) ]] || apt-get install -y rsync
else
[[ $(type -P rsync) ]] || yum_install rsync
fi fi
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment