Skip to content

Commit

Permalink
altered pacman flags
Browse files Browse the repository at this point in the history
  • Loading branch information
PKVadde committed Sep 10, 2024
1 parent 158fe00 commit 5c5a8c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cmd/install.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ fn install_verilator() -> Result<()> {
// Install Verilator using pacman on Arch Linux
let status = Command::new("sudo")
.arg("pacman")
.arg("-S")
.arg("-Syu")
.arg("--noconfirm")
.arg("verilator")
.status()
Expand Down Expand Up @@ -182,7 +182,7 @@ fn install_icarus_verilog() -> Result<()> {
// Install Icarus Verilog using pacman on Arch Linux
let status = Command::new("sudo")
.arg("pacman")
.arg("-S")
.arg("-Syu")
.arg("--noconfirm")
.arg("iverilog")
.status()
Expand Down

0 comments on commit 5c5a8c6

Please sign in to comment.