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 999cb54 commit 3f22a93
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 @@ -13,7 +13,7 @@ fn update_package_manager() -> Result<(), anyhow::Error> {
.arg("update")
.status()?;
},
OsTarget::RedHat | OsTarget::Fedora | OsTarget::AlmaLinux | OsTarget::RockyLinux => {
OsTarget::RedHat | OsTarget::Fedora => {
let _ = std::process::Command::new("yum")
.arg("update")
.arg("-y")
Expand Down

0 comments on commit 3f22a93

Please sign in to comment.