Fixed library install order

Necessary to ensure Rust libraries are installed first especially in regards to Ruby since Ruby needs `rustc` for YJIT support.

Milestone: patch
This commit is contained in:
Brooke Kuhlmann
2024-11-10 11:23:57 -07:00
parent 4c01cfa323
commit ee28395f66
2 changed files with 4 additions and 4 deletions

View File

@@ -42,9 +42,9 @@ while true; do
printf "%s\n" " r: Restore backups."
printf "%s\n" " i: Install all (i.e. executes all of the above steps in order listed)."
printf "%s\n" " Libraries:"
printf "%s\n" " np: Install Node packages."
printf "%s\n" " rg: Install Ruby gems."
printf "%s\n" " rc: Install Rust crates."
printf "%s\n" " rg: Install Ruby gems."
printf "%s\n" " np: Install Node packages."
printf "%s\n" " l: Install libraries (i.e. executes all of the above steps in order listed)."
printf "%s\n" " Manage:"
printf "%s\n" " c: Check status of managed software."

View File

@@ -50,9 +50,9 @@ process_option() {
'rc')
bin/install_rust_crates;;
'l')
bin/install_node_packages
bin/install_rust_crates
bin/install_ruby_gems
bin/install_rust_crates;;
bin/install_node_packages;;
'c')
verify_homebrew_formulas
verify_homebrew_casks