We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
install_system_packages
1 parent 506c3a0 commit 0fb15cbCopy full SHA for 0fb15cb
install-rust-toolchain.sh
@@ -427,22 +427,6 @@ function install_system_packages() {
427
fi
428
}
429
430
-function install_system_packages() {
431
- if [ -z "${SYSTEM_PACKAGES}" ]; then
432
- return
433
- fi
434
-
435
- echo "Installing system packages: ${SYSTEM_PACKAGES}"
436
437
- if [[ ${ARCH} == "aarch64-apple-darwin" || ${ARCH} == "x86_64-apple-darwin" ]]; then
438
- command -v brew || {
439
- echo "Warning: Unable to find command brew. Skipping installation of system package."
440
441
- }
442
- brew list "${SYSTEM_PACKAGES}" || brew install "${SYSTEM_PACKAGES}"
443
444
-}
445
446
# Check required tooling - rustc, rustfmt
447
command -v rustup || install_rustup
448
0 commit comments