"wrappers/vscode:/vscode.git/clone" did not exist on "6073a3bb72bb27cc5e2c5bcdbb10e06a67c3d50e"
Commit 98c0713a authored by mattip's avatar mattip
Browse files

fix fix fix

parent f012755f
......@@ -205,10 +205,12 @@ function untar {
}
function install_rsync {
if [ -z "$IS_MACOS" ]; then
[[ $(type -P rsync) ]] || yum_install rsync
if [ -n "$IS_MACOS" ]; then
# macOS
elif [[ $MB_ML_VER == "_2_24" ]]; then
[[ $(type -P rsync) ]] || apt-get install -y rsync
else
[[ $(type -P rsync) ]] || yum_install rsync
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