Skip to content

Commit

Permalink
refactor: Update OS target detection logic in install module
Browse files Browse the repository at this point in the history
  • Loading branch information
LeChatP committed Sep 5, 2024
1 parent 3f22a93 commit fc2f935
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xtask/src/install/dependencies.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ pub fn install(opts: InstallDependenciesOptions) -> Result<(), anyhow::Error> {
.args(get_dependencies(&os, &opts.dev))
.status()?;
},
OsTarget::RedHat | OsTarget::AlmaLinux | OsTarget::RockyLinux => {
OsTarget::RedHat => {
let _ = std::process::Command::new("yum")
.arg("install")
.arg("-y")
Expand Down

0 comments on commit fc2f935

Please sign in to comment.